2017-02-07 14:05:30 -06:00
|
|
|
error: `ref` on an entire `let` pattern is discouraged, take a reference with `&` instead
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/toplevel_ref_arg.rs:15:9
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2019-09-25 20:53:39 -05:00
|
|
|
LL | let ref _x = 1;
|
|
|
|
| ----^^^^^^----- help: try: `let _x = &1;`
|
2019-09-23 04:19:24 -05:00
|
|
|
|
|
|
|
|
= note: `-D clippy::toplevel-ref-arg` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: `ref` on an entire `let` pattern is discouraged, take a reference with `&` instead
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/toplevel_ref_arg.rs:17:9
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2019-09-25 20:53:39 -05:00
|
|
|
LL | let ref _y: (&_, u8) = (&1, 2);
|
|
|
|
| ----^^^^^^--------------------- help: try: `let _y: &(&_, u8) = &(&1, 2);`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: `ref` on an entire `let` pattern is discouraged, take a reference with `&` instead
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/toplevel_ref_arg.rs:19:9
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2019-09-25 20:53:39 -05:00
|
|
|
LL | let ref _z = 1 + 2;
|
|
|
|
| ----^^^^^^--------- help: try: `let _z = &(1 + 2);`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: `ref` on an entire `let` pattern is discouraged, take a reference with `&` instead
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/toplevel_ref_arg.rs:21:9
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2019-09-25 20:53:39 -05:00
|
|
|
LL | let ref mut _z = 1 + 2;
|
|
|
|
| ----^^^^^^^^^^--------- help: try: `let _z = &mut (1 + 2);`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2019-09-25 20:46:51 -05:00
|
|
|
error: `ref` on an entire `let` pattern is discouraged, take a reference with `&` instead
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/toplevel_ref_arg.rs:26:9
|
2019-09-25 20:46:51 -05:00
|
|
|
|
|
2019-09-25 20:53:39 -05:00
|
|
|
LL | let ref _x = vec![1, 2, 3];
|
|
|
|
| ----^^^^^^----------------- help: try: `let _x = &vec![1, 2, 3];`
|
2019-09-25 20:46:51 -05:00
|
|
|
|
2020-11-05 07:29:48 -06:00
|
|
|
error: `ref` on an entire `let` pattern is discouraged, take a reference with `&` instead
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/toplevel_ref_arg.rs:36:17
|
2020-11-05 07:29:48 -06:00
|
|
|
|
|
2023-03-24 08:04:35 -05:00
|
|
|
LL | inline!(let ref _y = 42;);
|
|
|
|
| ----^^^^^^------ help: try: `let _y = &42;`
|
2020-11-05 07:29:48 -06:00
|
|
|
|
|
2023-03-24 08:04:35 -05:00
|
|
|
= note: this error originates in the macro `__inline_mac_fn_main` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2020-11-05 07:29:48 -06:00
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|