rust/tests/ui/unnecessary_ref.stderr
2018-12-28 12:41:12 +01:00

14 lines
383 B
Text

error: Creating a reference that is immediately dereferenced.
--> $DIR/unnecessary_ref.rs:20:17
|
LL | let inner = (&outer).inner;
| ^^^^^^^^ help: try this: `outer.inner`
|
note: lint level defined here
--> $DIR/unnecessary_ref.rs:17:8
|
LL | #[deny(clippy::ref_in_deref)]
| ^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error