rust/tests/ui/reference.stderr
2018-12-10 08:22:07 +01:00

71 lines
1.8 KiB
Plaintext

error: immediately dereferencing a reference
--> $DIR/reference.rs:25:13
|
25 | let b = *&a;
| ^^^ help: try this: `a`
|
= note: `-D clippy::deref-addrof` implied by `-D warnings`
error: immediately dereferencing a reference
--> $DIR/reference.rs:27:13
|
27 | let b = *&get_number();
| ^^^^^^^^^^^^^^ help: try this: `get_number()`
error: immediately dereferencing a reference
--> $DIR/reference.rs:32:13
|
32 | let b = *&bytes[1..2][0];
| ^^^^^^^^^^^^^^^^ help: try this: `bytes[1..2][0]`
error: immediately dereferencing a reference
--> $DIR/reference.rs:36:13
|
36 | let b = *&(a);
| ^^^^^ help: try this: `(a)`
error: immediately dereferencing a reference
--> $DIR/reference.rs:38:13
|
38 | let b = *(&a);
| ^^^^^ help: try this: `a`
error: immediately dereferencing a reference
--> $DIR/reference.rs:40:13
|
40 | let b = *(&a);
| ^^^^^ help: try this: `a`
error: immediately dereferencing a reference
--> $DIR/reference.rs:42:13
|
42 | let b = *&&a;
| ^^^^ help: try this: `&a`
error: immediately dereferencing a reference
--> $DIR/reference.rs:44:14
|
44 | let b = **&aref;
| ^^^^^^ help: try this: `aref`
error: immediately dereferencing a reference
--> $DIR/reference.rs:48:14
|
48 | let b = **&&a;
| ^^^^ help: try this: `&a`
error: immediately dereferencing a reference
--> $DIR/reference.rs:52:17
|
52 | let y = *&mut x;
| ^^^^^^^ help: try this: `x`
error: immediately dereferencing a reference
--> $DIR/reference.rs:59:18
|
59 | let y = **&mut &mut x;
| ^^^^^^^^^^^^ help: try this: `&mut x`
error: aborting due to 11 previous errors