rust/tests/ui/reference.stderr

71 lines
1.8 KiB
Plaintext
Raw Normal View History

error: immediately dereferencing a reference
2018-10-06 11:18:06 -05:00
--> $DIR/reference.rs:29:13
|
2018-10-06 11:18:06 -05:00
29 | let b = *&a;
2017-07-21 03:40:23 -05:00
| ^^^ help: try this: `a`
|
= note: `-D clippy::deref-addrof` implied by `-D warnings`
error: immediately dereferencing a reference
2018-10-06 11:18:06 -05:00
--> $DIR/reference.rs:31:13
|
2018-10-06 11:18:06 -05:00
31 | let b = *&get_number();
2017-07-21 03:40:23 -05:00
| ^^^^^^^^^^^^^^ help: try this: `get_number()`
error: immediately dereferencing a reference
2018-10-06 11:18:06 -05:00
--> $DIR/reference.rs:36:13
|
2018-10-06 11:18:06 -05:00
36 | let b = *&bytes[1..2][0];
2017-07-21 03:40:23 -05:00
| ^^^^^^^^^^^^^^^^ help: try this: `bytes[1..2][0]`
error: immediately dereferencing a reference
2018-10-06 11:18:06 -05:00
--> $DIR/reference.rs:40:13
|
2018-10-06 11:18:06 -05:00
40 | let b = *&(a);
2017-07-21 03:40:23 -05:00
| ^^^^^ help: try this: `(a)`
error: immediately dereferencing a reference
2018-10-06 11:18:06 -05:00
--> $DIR/reference.rs:42:13
|
2018-10-06 11:18:06 -05:00
42 | let b = *(&a);
2017-07-21 03:40:23 -05:00
| ^^^^^ help: try this: `a`
error: immediately dereferencing a reference
2018-10-06 11:18:06 -05:00
--> $DIR/reference.rs:44:13
|
2018-10-06 11:18:06 -05:00
44 | let b = *((&a));
2017-07-21 03:40:23 -05:00
| ^^^^^^^ help: try this: `a`
error: immediately dereferencing a reference
2018-10-06 11:18:06 -05:00
--> $DIR/reference.rs:46:13
|
2018-10-06 11:18:06 -05:00
46 | let b = *&&a;
2017-07-21 03:40:23 -05:00
| ^^^^ help: try this: `&a`
error: immediately dereferencing a reference
2018-10-06 11:18:06 -05:00
--> $DIR/reference.rs:48:14
|
2018-10-06 11:18:06 -05:00
48 | let b = **&aref;
2017-07-21 03:40:23 -05:00
| ^^^^^^ help: try this: `aref`
error: immediately dereferencing a reference
2018-10-06 11:18:06 -05:00
--> $DIR/reference.rs:52:14
|
2018-10-06 11:18:06 -05:00
52 | let b = **&&a;
2017-07-21 03:40:23 -05:00
| ^^^^ help: try this: `&a`
error: immediately dereferencing a reference
2018-10-06 11:18:06 -05:00
--> $DIR/reference.rs:56:17
|
2018-10-06 11:18:06 -05:00
56 | let y = *&mut x;
2017-07-21 03:40:23 -05:00
| ^^^^^^^ help: try this: `x`
error: immediately dereferencing a reference
2018-10-06 11:18:06 -05:00
--> $DIR/reference.rs:63:18
|
2018-10-06 11:18:06 -05:00
63 | let y = **&mut &mut x;
2017-07-21 03:40:23 -05:00
| ^^^^^^^^^^^^ help: try this: `&mut x`
2018-01-16 10:06:27 -06:00
error: aborting due to 11 previous errors