2017-02-07 14:05:30 -06:00
|
|
|
error: immediately dereferencing a reference
|
2023-03-07 08:40:55 -06:00
|
|
|
--> $DIR/deref_addrof.rs:24:13
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let b = *&a;
|
2017-07-21 03:40:23 -05:00
|
|
|
| ^^^ help: try this: `a`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::deref-addrof` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2023-03-07 08:40:55 -06:00
|
|
|
--> $DIR/deref_addrof.rs:26:13
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let b = *&get_number();
|
2017-07-21 03:40:23 -05:00
|
|
|
| ^^^^^^^^^^^^^^ help: try this: `get_number()`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2023-03-07 08:40:55 -06:00
|
|
|
--> $DIR/deref_addrof.rs:31:13
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let b = *&bytes[1..2][0];
|
2017-07-21 03:40:23 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^ help: try this: `bytes[1..2][0]`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2023-03-07 08:40:55 -06:00
|
|
|
--> $DIR/deref_addrof.rs:35:13
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let b = *&(a);
|
2017-07-21 03:40:23 -05:00
|
|
|
| ^^^^^ help: try this: `(a)`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2023-03-07 08:40:55 -06:00
|
|
|
--> $DIR/deref_addrof.rs:37:13
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let b = *(&a);
|
2017-07-21 03:40:23 -05:00
|
|
|
| ^^^^^ help: try this: `a`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2023-03-07 08:40:55 -06:00
|
|
|
--> $DIR/deref_addrof.rs:40:13
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let b = *((&a));
|
2018-12-10 17:59:59 -06:00
|
|
|
| ^^^^^^^ help: try this: `a`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2023-03-07 08:40:55 -06:00
|
|
|
--> $DIR/deref_addrof.rs:42:13
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let b = *&&a;
|
2017-07-21 03:40:23 -05:00
|
|
|
| ^^^^ help: try this: `&a`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2023-03-07 08:40:55 -06:00
|
|
|
--> $DIR/deref_addrof.rs:44:14
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let b = **&aref;
|
2017-07-21 03:40:23 -05:00
|
|
|
| ^^^^^^ help: try this: `aref`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2020-11-23 06:51:04 -06:00
|
|
|
error: immediately dereferencing a reference
|
2023-03-07 08:40:55 -06:00
|
|
|
--> $DIR/deref_addrof.rs:54:17
|
2020-11-23 06:51:04 -06:00
|
|
|
|
|
2023-03-07 08:40:55 -06:00
|
|
|
LL | inline!(*& $(@expr self))
|
|
|
|
| ^^^^^^^^^^^^^^^^ help: try this: `$(@expr self)`
|
2020-11-23 06:51:04 -06:00
|
|
|
|
|
2023-03-07 08:40:55 -06:00
|
|
|
= note: this error originates in the macro `__inline_mac_impl` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2020-11-23 06:51:04 -06:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2023-03-07 08:40:55 -06:00
|
|
|
--> $DIR/deref_addrof.rs:58:17
|
2020-11-23 06:51:04 -06:00
|
|
|
|
|
2023-03-07 08:40:55 -06:00
|
|
|
LL | inline!(*&mut $(@expr self))
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: try this: `$(@expr self)`
|
2020-11-23 06:51:04 -06:00
|
|
|
|
|
2023-03-07 08:40:55 -06:00
|
|
|
= note: this error originates in the macro `__inline_mac_impl` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2020-11-23 06:51:04 -06:00
|
|
|
|
|
|
|
error: aborting due to 10 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|