2017-02-07 20:05:30 +00:00
|
|
|
error: `ref` on an entire `let` pattern is discouraged, take a reference with `&` instead
|
2019-09-23 09:19:24 +00:00
|
|
|
--> $DIR/toplevel_ref_arg.rs:11:9
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let ref x = 1;
|
2018-12-10 05:27:19 +00:00
|
|
|
| ----^^^^^----- 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
|
2019-09-23 09:19:24 +00:00
|
|
|
--> $DIR/toplevel_ref_arg.rs:13:9
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let ref y: (&_, u8) = (&1, 2);
|
2018-12-10 05:27:19 +00:00
|
|
|
| ----^^^^^--------------------- 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
|
2019-09-23 09:19:24 +00:00
|
|
|
--> $DIR/toplevel_ref_arg.rs:15:9
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let ref z = 1 + 2;
|
2018-12-10 05:27:19 +00:00
|
|
|
| ----^^^^^--------- 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
|
2019-09-23 09:19:24 +00:00
|
|
|
--> $DIR/toplevel_ref_arg.rs:17:9
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let ref mut z = 1 + 2;
|
2018-12-10 05:27:19 +00:00
|
|
|
| ----^^^^^^^^^--------- help: try: `let z = &mut (1 + 2);`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2019-09-23 09:19:24 +00:00
|
|
|
error: aborting due to 4 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|