rust/tests/ui/unnecessary_ref.stderr

15 lines
383 B
Plaintext
Raw Normal View History

2018-05-28 09:29:02 +02:00
error: Creating a reference that is immediately dereferenced.
2018-12-10 06:27:19 +01:00
--> $DIR/unnecessary_ref.rs:20:17
2018-05-28 09:29:02 +02:00
|
2018-12-10 06:27:19 +01:00
20 | let inner = (&outer).inner;
2018-05-28 09:29:02 +02:00
| ^^^^^^^^ help: try this: `outer.inner`
|
note: lint level defined here
2018-12-10 06:27:19 +01:00
--> $DIR/unnecessary_ref.rs:17:8
2018-05-28 09:29:02 +02:00
|
2018-12-10 06:27:19 +01:00
17 | #[deny(clippy::ref_in_deref)]
| ^^^^^^^^^^^^^^^^^^^^
2018-05-28 09:29:02 +02:00
error: aborting due to previous error