rust/tests/ui/mut_mut.stderr

62 lines
1.8 KiB
Text
Raw Normal View History

error: generally you want to avoid `&mut &mut _` if possible
2018-10-06 18:18:06 +02:00
--> $DIR/mut_mut.rs:20:12
|
2018-10-06 18:18:06 +02:00
20 | fn fun(x : &mut &mut u32) -> bool {
| ^^^^^^^^^^^^^
|
= note: `-D clippy::mut-mut` implied by `-D warnings`
error: generally you want to avoid `&mut &mut _` if possible
2018-10-06 18:18:06 +02:00
--> $DIR/mut_mut.rs:34:17
|
2018-10-06 18:18:06 +02:00
34 | let mut x = &mut &mut 1u32;
| ^^^^^^^^^^^^^^
error: generally you want to avoid `&mut &mut _` if possible
2018-10-06 18:18:06 +02:00
--> $DIR/mut_mut.rs:29:20
|
2018-10-06 18:18:06 +02:00
29 | ($p:expr) => { &mut $p }
| ^^^^^^^
...
2018-10-06 18:18:06 +02:00
49 | let mut z = mut_ptr!(&mut 3u32);
| ------------------- in this macro invocation
error: this expression mutably borrows a mutable reference. Consider reborrowing
2018-10-06 18:18:06 +02:00
--> $DIR/mut_mut.rs:36:21
|
2018-10-06 18:18:06 +02:00
36 | let mut y = &mut x;
| ^^^^^^
error: generally you want to avoid `&mut &mut _` if possible
2018-10-06 18:18:06 +02:00
--> $DIR/mut_mut.rs:40:33
|
2018-10-06 18:18:06 +02:00
40 | let y : &mut &mut u32 = &mut &mut 2;
2017-09-23 22:35:06 +02:00
| ^^^^^^^^^^^
error: generally you want to avoid `&mut &mut _` if possible
2018-10-06 18:18:06 +02:00
--> $DIR/mut_mut.rs:40:17
|
2018-10-06 18:18:06 +02:00
40 | let y : &mut &mut u32 = &mut &mut 2;
2017-09-23 22:35:06 +02:00
| ^^^^^^^^^^^^^
error: generally you want to avoid `&mut &mut _` if possible
2018-10-06 18:18:06 +02:00
--> $DIR/mut_mut.rs:45:38
|
2018-10-06 18:18:06 +02:00
45 | let y : &mut &mut &mut u32 = &mut &mut &mut 2;
2017-09-23 22:35:06 +02:00
| ^^^^^^^^^^^^^^^^
error: generally you want to avoid `&mut &mut _` if possible
2018-10-06 18:18:06 +02:00
--> $DIR/mut_mut.rs:45:17
|
2018-10-06 18:18:06 +02:00
45 | let y : &mut &mut &mut u32 = &mut &mut &mut 2;
2017-09-23 22:35:06 +02:00
| ^^^^^^^^^^^^^^^^^^
error: generally you want to avoid `&mut &mut _` if possible
2018-10-06 18:18:06 +02:00
--> $DIR/mut_mut.rs:45:22
|
2018-10-06 18:18:06 +02:00
45 | let y : &mut &mut &mut u32 = &mut &mut &mut 2;
2017-09-23 22:35:06 +02:00
| ^^^^^^^^^^^^^
2018-01-16 17:06:27 +01:00
error: aborting due to 9 previous errors