mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-13 08:27:14 +00:00
4698b366c4
When there are multiple macros in use, it can be difficult to tell which one was responsible for producing an error.
74 lines
2.1 KiB
Text
74 lines
2.1 KiB
Text
error: immediately dereferencing a reference
|
|
--> $DIR/deref_addrof.rs:18:13
|
|
|
|
|
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.rs:20:13
|
|
|
|
|
LL | let b = *&get_number();
|
|
| ^^^^^^^^^^^^^^ help: try this: `get_number()`
|
|
|
|
error: immediately dereferencing a reference
|
|
--> $DIR/deref_addrof.rs:25:13
|
|
|
|
|
LL | let b = *&bytes[1..2][0];
|
|
| ^^^^^^^^^^^^^^^^ help: try this: `bytes[1..2][0]`
|
|
|
|
error: immediately dereferencing a reference
|
|
--> $DIR/deref_addrof.rs:29:13
|
|
|
|
|
LL | let b = *&(a);
|
|
| ^^^^^ help: try this: `(a)`
|
|
|
|
error: immediately dereferencing a reference
|
|
--> $DIR/deref_addrof.rs:31:13
|
|
|
|
|
LL | let b = *(&a);
|
|
| ^^^^^ help: try this: `a`
|
|
|
|
error: immediately dereferencing a reference
|
|
--> $DIR/deref_addrof.rs:34:13
|
|
|
|
|
LL | let b = *((&a));
|
|
| ^^^^^^^ help: try this: `a`
|
|
|
|
error: immediately dereferencing a reference
|
|
--> $DIR/deref_addrof.rs:36:13
|
|
|
|
|
LL | let b = *&&a;
|
|
| ^^^^ help: try this: `&a`
|
|
|
|
error: immediately dereferencing a reference
|
|
--> $DIR/deref_addrof.rs:38:14
|
|
|
|
|
LL | let b = **&aref;
|
|
| ^^^^^^ help: try this: `aref`
|
|
|
|
error: immediately dereferencing a reference
|
|
--> $DIR/deref_addrof.rs:44:9
|
|
|
|
|
LL | *& $visitor
|
|
| ^^^^^^^^^^^ help: try this: `$visitor`
|
|
...
|
|
LL | m!(self)
|
|
| -------- in this macro invocation
|
|
|
|
|
= note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: immediately dereferencing a reference
|
|
--> $DIR/deref_addrof.rs:51:9
|
|
|
|
|
LL | *& mut $visitor
|
|
| ^^^^^^^^^^^^^^^ help: try this: `$visitor`
|
|
...
|
|
LL | m_mut!(self)
|
|
| ------------ in this macro invocation
|
|
|
|
|
= note: this error originates in the macro `m_mut` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: aborting due to 10 previous errors
|
|
|