rust-clippy/tests/ui/reference.stderr

71 lines
1.8 KiB
Text
Raw Normal View History

error: immediately dereferencing a reference
--> $DIR/reference.rs:16:13
|
2018-12-27 15:57:55 +00:00
LL | let b = *&a;
2017-07-21 08:40:23 +00:00
| ^^^ help: try this: `a`
|
= note: `-D clippy::deref-addrof` implied by `-D warnings`
error: immediately dereferencing a reference
--> $DIR/reference.rs:18:13
|
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()`
error: immediately dereferencing a reference
--> $DIR/reference.rs:23:13
|
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]`
error: immediately dereferencing a reference
--> $DIR/reference.rs:27:13
|
2018-12-27 15:57:55 +00:00
LL | let b = *&(a);
2017-07-21 08:40:23 +00:00
| ^^^^^ help: try this: `(a)`
error: immediately dereferencing a reference
--> $DIR/reference.rs:29:13
|
2018-12-27 15:57:55 +00:00
LL | let b = *(&a);
2017-07-21 08:40:23 +00:00
| ^^^^^ help: try this: `a`
error: immediately dereferencing a reference
--> $DIR/reference.rs:32:13
|
2018-12-27 15:57:55 +00:00
LL | let b = *((&a));
| ^^^^^^^ help: try this: `a`
error: immediately dereferencing a reference
--> $DIR/reference.rs:34:13
|
2018-12-27 15:57:55 +00:00
LL | let b = *&&a;
2017-07-21 08:40:23 +00:00
| ^^^^ help: try this: `&a`
error: immediately dereferencing a reference
--> $DIR/reference.rs:36:14
|
2018-12-27 15:57:55 +00:00
LL | let b = **&aref;
2017-07-21 08:40:23 +00:00
| ^^^^^^ help: try this: `aref`
error: immediately dereferencing a reference
--> $DIR/reference.rs:40:14
|
2018-12-27 15:57:55 +00:00
LL | let b = **&&a;
2017-07-21 08:40:23 +00:00
| ^^^^ help: try this: `&a`
error: immediately dereferencing a reference
--> $DIR/reference.rs:44:17
|
2018-12-27 15:57:55 +00:00
LL | let y = *&mut x;
2017-07-21 08:40:23 +00:00
| ^^^^^^^ help: try this: `x`
error: immediately dereferencing a reference
--> $DIR/reference.rs:51:18
|
2018-12-27 15:57:55 +00:00
LL | let y = **&mut &mut x;
2017-07-21 08:40:23 +00:00
| ^^^^^^^^^^^^ help: try this: `&mut x`
2018-01-16 16:06:27 +00:00
error: aborting due to 11 previous errors