2017-02-07 20:05:30 +00:00
|
|
|
error: immediately dereferencing a reference
|
2023-03-07 14:40:55 +00:00
|
|
|
--> $DIR/deref_addrof.rs:24:13
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let b = *&a;
|
2023-07-01 11:08:01 +00:00
|
|
|
| ^^^ help: try: `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
|
2023-03-07 14:40: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 = *&get_number();
|
2023-07-01 11:08:01 +00:00
|
|
|
| ^^^^^^^^^^^^^^ help: try: `get_number()`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2023-03-07 14:40:55 +00:00
|
|
|
--> $DIR/deref_addrof.rs:31:13
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let b = *&bytes[1..2][0];
|
2023-07-01 11:08:01 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^ help: try: `bytes[1..2][0]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2023-03-07 14:40: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);
|
2023-07-01 11:08:01 +00:00
|
|
|
| ^^^^^ help: try: `(a)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2023-03-07 14:40: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);
|
2023-07-01 11:08:01 +00:00
|
|
|
| ^^^^^ help: try: `a`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2023-03-07 14:40:55 +00:00
|
|
|
--> $DIR/deref_addrof.rs:40:13
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let b = *((&a));
|
2023-07-01 11:08:01 +00:00
|
|
|
| ^^^^^^^ help: try: `a`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2023-03-07 14:40:55 +00:00
|
|
|
--> $DIR/deref_addrof.rs:42:13
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let b = *&&a;
|
2023-07-01 11:08:01 +00:00
|
|
|
| ^^^^ help: try: `&a`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2023-03-07 14:40:55 +00:00
|
|
|
--> $DIR/deref_addrof.rs:44:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let b = **&aref;
|
2023-07-01 11:08:01 +00:00
|
|
|
| ^^^^^^ help: try: `aref`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2020-11-23 12:51:04 +00:00
|
|
|
error: immediately dereferencing a reference
|
2023-03-07 14:40:55 +00:00
|
|
|
--> $DIR/deref_addrof.rs:54:17
|
2020-11-23 12:51:04 +00:00
|
|
|
|
|
2023-03-07 14:40:55 +00:00
|
|
|
LL | inline!(*& $(@expr self))
|
2023-07-01 11:08:01 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^ help: try: `$(@expr self)`
|
2020-11-23 12:51:04 +00:00
|
|
|
|
|
2023-03-07 14:40:55 +00: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 12:51:04 +00:00
|
|
|
|
|
|
|
error: immediately dereferencing a reference
|
2023-03-07 14:40:55 +00:00
|
|
|
--> $DIR/deref_addrof.rs:58:17
|
2020-11-23 12:51:04 +00:00
|
|
|
|
|
2023-03-07 14:40:55 +00:00
|
|
|
LL | inline!(*&mut $(@expr self))
|
2023-07-01 11:08:01 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: try: `$(@expr self)`
|
2020-11-23 12:51:04 +00:00
|
|
|
|
|
2023-03-07 14:40:55 +00: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 12:51:04 +00:00
|
|
|
|
|
|
|
error: aborting due to 10 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|