rust/tests/ui/reference.stderr

71 lines
1.8 KiB
Plaintext
Raw Normal View History

error: immediately dereferencing a reference
2018-12-10 05:27:19 +00:00
--> $DIR/reference.rs:25:13
|
2018-12-10 05:27:19 +00:00
25 | 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
2018-12-10 05:27:19 +00:00
--> $DIR/reference.rs:27:13
|
2018-12-10 05:27:19 +00:00
27 | let b = *&get_number();
2017-07-21 08:40:23 +00:00
| ^^^^^^^^^^^^^^ help: try this: `get_number()`
error: immediately dereferencing a reference
2018-12-10 05:27:19 +00:00
--> $DIR/reference.rs:32:13
|
2018-12-10 05:27:19 +00:00
32 | 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
2018-12-10 05:27:19 +00:00
--> $DIR/reference.rs:36:13
|
2018-12-10 05:27:19 +00:00
36 | let b = *&(a);
2017-07-21 08:40:23 +00:00
| ^^^^^ help: try this: `(a)`
error: immediately dereferencing a reference
2018-12-10 05:27:19 +00:00
--> $DIR/reference.rs:38:13
|
2018-12-10 05:27:19 +00:00
38 | let b = *(&a);
2017-07-21 08:40:23 +00:00
| ^^^^^ help: try this: `a`
error: immediately dereferencing a reference
2018-12-10 05:27:19 +00:00
--> $DIR/reference.rs:40:13
|
2018-12-10 05:27:19 +00:00
40 | let b = *(&a);
| ^^^^^ help: try this: `a`
error: immediately dereferencing a reference
2018-12-10 05:27:19 +00:00
--> $DIR/reference.rs:42:13
|
2018-12-10 05:27:19 +00:00
42 | let b = *&&a;
2017-07-21 08:40:23 +00:00
| ^^^^ help: try this: `&a`
error: immediately dereferencing a reference
2018-12-10 05:27:19 +00:00
--> $DIR/reference.rs:44:14
|
2018-12-10 05:27:19 +00:00
44 | let b = **&aref;
2017-07-21 08:40:23 +00:00
| ^^^^^^ help: try this: `aref`
error: immediately dereferencing a reference
2018-12-10 05:27:19 +00:00
--> $DIR/reference.rs:48:14
|
2018-12-10 05:27:19 +00:00
48 | let b = **&&a;
2017-07-21 08:40:23 +00:00
| ^^^^ help: try this: `&a`
error: immediately dereferencing a reference
2018-12-10 05:27:19 +00:00
--> $DIR/reference.rs:52:17
|
2018-12-10 05:27:19 +00:00
52 | let y = *&mut x;
2017-07-21 08:40:23 +00:00
| ^^^^^^^ help: try this: `x`
error: immediately dereferencing a reference
2018-12-10 05:27:19 +00:00
--> $DIR/reference.rs:59:18
|
2018-12-10 05:27:19 +00:00
59 | 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