mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 08:57:30 +00:00
23 lines
648 B
Text
23 lines
648 B
Text
|
error: immediately dereferencing a reference
|
||
|
--> $DIR/deref_addrof_double_trigger.rs:8:14
|
||
|
|
|
||
|
LL | let b = **&&a;
|
||
|
| ^^^^ help: try this: `&a`
|
||
|
|
|
||
|
= note: `-D clippy::deref-addrof` implied by `-D warnings`
|
||
|
|
||
|
error: immediately dereferencing a reference
|
||
|
--> $DIR/deref_addrof_double_trigger.rs:12:17
|
||
|
|
|
||
|
LL | let y = *&mut x;
|
||
|
| ^^^^^^^ help: try this: `x`
|
||
|
|
||
|
error: immediately dereferencing a reference
|
||
|
--> $DIR/deref_addrof_double_trigger.rs:19:18
|
||
|
|
|
||
|
LL | let y = **&mut &mut x;
|
||
|
| ^^^^^^^^^^^^ help: try this: `&mut x`
|
||
|
|
||
|
error: aborting due to 3 previous errors
|
||
|
|