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