2017-02-07 20:05:30 +00:00
|
|
|
error: generally you want to avoid `&mut &mut _` if possible
|
2021-10-09 13:54:16 +00:00
|
|
|
--> $DIR/mut_mut.rs:9:11
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn fun(x: &mut &mut u32) -> bool {
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::mut-mut` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: generally you want to avoid `&mut &mut _` if possible
|
2021-10-09 13:54:16 +00:00
|
|
|
--> $DIR/mut_mut.rs:25:17
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let mut x = &mut &mut 1u32;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: generally you want to avoid `&mut &mut _` if possible
|
2021-10-09 13:54:16 +00:00
|
|
|
--> $DIR/mut_mut.rs:19:9
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | &mut $p
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
...
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let mut z = mut_ptr!(&mut 3u32);
|
2017-02-07 20:05:30 +00:00
|
|
|
| ------------------- in this macro invocation
|
2020-02-07 03:34:06 +00:00
|
|
|
|
|
2021-02-13 19:52:25 +00:00
|
|
|
= note: this error originates in the macro `mut_ptr` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: this expression mutably borrows a mutable reference. Consider reborrowing
|
2021-10-09 13:54:16 +00:00
|
|
|
--> $DIR/mut_mut.rs:27:21
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let mut y = &mut x;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
error: generally you want to avoid `&mut &mut _` if possible
|
2021-10-09 13:54:16 +00:00
|
|
|
--> $DIR/mut_mut.rs:31:32
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let y: &mut &mut u32 = &mut &mut 2;
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: generally you want to avoid `&mut &mut _` if possible
|
2021-10-09 13:54:16 +00:00
|
|
|
--> $DIR/mut_mut.rs:31:16
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let y: &mut &mut u32 = &mut &mut 2;
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: generally you want to avoid `&mut &mut _` if possible
|
2021-10-09 13:54:16 +00:00
|
|
|
--> $DIR/mut_mut.rs:36:37
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let y: &mut &mut &mut u32 = &mut &mut &mut 2;
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: generally you want to avoid `&mut &mut _` if possible
|
2021-10-09 13:54:16 +00:00
|
|
|
--> $DIR/mut_mut.rs:36:16
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let y: &mut &mut &mut u32 = &mut &mut &mut 2;
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: generally you want to avoid `&mut &mut _` if possible
|
2021-10-09 13:54:16 +00:00
|
|
|
--> $DIR/mut_mut.rs:36:21
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let y: &mut &mut &mut u32 = &mut &mut &mut 2;
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 9 previous errors
|
|
|
|
|