2017-02-07 20:05:30 +00:00
|
|
|
error: `ref` directly on a function argument is ignored. Consider using a reference type instead.
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/toplevel_ref_arg.rs:7:15
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
7 | fn the_answer(ref mut x: u8) {
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
= note: `-D 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
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/toplevel_ref_arg.rs:18:7
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
|
18 | let ref x = 1;
|
2017-07-21 08:40:23 +00:00
|
|
|
| ----^^^^^----- help: try: `let x = &1;`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: `ref` on an entire `let` pattern is discouraged, take a reference with `&` instead
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/toplevel_ref_arg.rs:20:7
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 14:51:28 +00:00
|
|
|
20 | let ref y: (&_, u8) = (&1, 2);
|
2017-07-21 08:40:23 +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
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/toplevel_ref_arg.rs:22:7
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 14:51:28 +00:00
|
|
|
22 | let ref z = 1 + 2;
|
2017-07-21 08:40:23 +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
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/toplevel_ref_arg.rs:24:7
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 14:51:28 +00:00
|
|
|
24 | let ref mut z = 1 + 2;
|
2017-07-21 08:40:23 +00:00
|
|
|
| ----^^^^^^^^^--------- help: try: `let z = &mut (1 + 2);`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|