mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
70 lines
1.8 KiB
Text
70 lines
1.8 KiB
Text
error: immediately dereferencing a reference
|
|
--> $DIR/reference.rs:16:13
|
|
|
|
|
LL | let b = *&a;
|
|
| ^^^ help: try this: `a`
|
|
|
|
|
= note: `-D clippy::deref-addrof` implied by `-D warnings`
|
|
|
|
error: immediately dereferencing a reference
|
|
--> $DIR/reference.rs:18:13
|
|
|
|
|
LL | let b = *&get_number();
|
|
| ^^^^^^^^^^^^^^ help: try this: `get_number()`
|
|
|
|
error: immediately dereferencing a reference
|
|
--> $DIR/reference.rs:23:13
|
|
|
|
|
LL | let b = *&bytes[1..2][0];
|
|
| ^^^^^^^^^^^^^^^^ help: try this: `bytes[1..2][0]`
|
|
|
|
error: immediately dereferencing a reference
|
|
--> $DIR/reference.rs:27:13
|
|
|
|
|
LL | let b = *&(a);
|
|
| ^^^^^ help: try this: `(a)`
|
|
|
|
error: immediately dereferencing a reference
|
|
--> $DIR/reference.rs:29:13
|
|
|
|
|
LL | let b = *(&a);
|
|
| ^^^^^ help: try this: `a`
|
|
|
|
error: immediately dereferencing a reference
|
|
--> $DIR/reference.rs:32:13
|
|
|
|
|
LL | let b = *((&a));
|
|
| ^^^^^^^ help: try this: `a`
|
|
|
|
error: immediately dereferencing a reference
|
|
--> $DIR/reference.rs:34:13
|
|
|
|
|
LL | let b = *&&a;
|
|
| ^^^^ help: try this: `&a`
|
|
|
|
error: immediately dereferencing a reference
|
|
--> $DIR/reference.rs:36:14
|
|
|
|
|
LL | let b = **&aref;
|
|
| ^^^^^^ help: try this: `aref`
|
|
|
|
error: immediately dereferencing a reference
|
|
--> $DIR/reference.rs:40:14
|
|
|
|
|
LL | let b = **&&a;
|
|
| ^^^^ help: try this: `&a`
|
|
|
|
error: immediately dereferencing a reference
|
|
--> $DIR/reference.rs:44:17
|
|
|
|
|
LL | let y = *&mut x;
|
|
| ^^^^^^^ help: try this: `x`
|
|
|
|
error: immediately dereferencing a reference
|
|
--> $DIR/reference.rs:51:18
|
|
|
|
|
LL | let y = **&mut &mut x;
|
|
| ^^^^^^^^^^^^ help: try this: `&mut x`
|
|
|
|
error: aborting due to 11 previous errors
|
|
|