2017-02-07 20:05:30 +00:00
|
|
|
error: immediately dereferencing a reference
|
2021-12-03 16:51:55 +00:00
|
|
|
--> $DIR/deref_addrof.rs:19:13
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let b = *&a;
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^ help: try this: `a`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::deref-addrof` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2021-12-03 16:51:55 +00:00
|
|
|
--> $DIR/deref_addrof.rs:21:13
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let b = *&get_number();
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^ help: try this: `get_number()`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2021-12-03 16:51:55 +00:00
|
|
|
--> $DIR/deref_addrof.rs:26:13
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let b = *&bytes[1..2][0];
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^ help: try this: `bytes[1..2][0]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2021-12-03 16:51:55 +00:00
|
|
|
--> $DIR/deref_addrof.rs:30:13
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let b = *&(a);
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^ help: try this: `(a)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2021-12-03 16:51:55 +00:00
|
|
|
--> $DIR/deref_addrof.rs:32:13
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let b = *(&a);
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^ help: try this: `a`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2021-12-03 16:51:55 +00:00
|
|
|
--> $DIR/deref_addrof.rs:35:13
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let b = *((&a));
|
2018-12-10 23:59:59 +00:00
|
|
|
| ^^^^^^^ help: try this: `a`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2021-12-03 16:51:55 +00:00
|
|
|
--> $DIR/deref_addrof.rs:37:13
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let b = *&&a;
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^ help: try this: `&a`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2021-12-03 16:51:55 +00:00
|
|
|
--> $DIR/deref_addrof.rs:39:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let b = **&aref;
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^ help: try this: `aref`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2020-11-23 12:51:04 +00:00
|
|
|
error: immediately dereferencing a reference
|
2022-01-12 05:25:42 +00:00
|
|
|
--> $DIR/deref_addrof.rs:47:9
|
2020-11-23 12:51:04 +00:00
|
|
|
|
|
|
|
|
LL | *& $visitor
|
|
|
|
| ^^^^^^^^^^^ help: try this: `$visitor`
|
|
|
|
...
|
|
|
|
LL | m!(self)
|
|
|
|
| -------- in this macro invocation
|
|
|
|
|
|
2021-02-13 19:52:25 +00:00
|
|
|
= note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2020-11-23 12:51:04 +00:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2022-01-12 05:25:42 +00:00
|
|
|
--> $DIR/deref_addrof.rs:54:9
|
2020-11-23 12:51:04 +00:00
|
|
|
|
|
|
|
|
LL | *& mut $visitor
|
|
|
|
| ^^^^^^^^^^^^^^^ help: try this: `$visitor`
|
|
|
|
...
|
|
|
|
LL | m_mut!(self)
|
|
|
|
| ------------ in this macro invocation
|
|
|
|
|
|
2021-02-13 19:52:25 +00:00
|
|
|
= note: this error originates in the macro `m_mut` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2020-11-23 12:51:04 +00:00
|
|
|
|
|
|
|
error: aborting due to 10 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|