rust-clippy/tests/ui/unnecessary_ref.stderr

15 lines
383 B
Text
Raw Normal View History

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