2020-07-23 21:36:20 +00:00
|
|
|
error: creating a reference that is immediately dereferenced
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unnecessary_ref.rs:13:17
|
2018-05-28 07:29:02 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let inner = (&outer).inner;
|
2018-12-09 16:25:45 +00:00
|
|
|
| ^^^^^^^^ help: try this: `outer`
|
2018-05-28 07:29:02 +00:00
|
|
|
|
|
2020-01-31 19:21:10 +00:00
|
|
|
note: the lint level is defined here
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unnecessary_ref.rs:10:8
|
2018-05-28 07:29:02 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | #[deny(clippy::ref_in_deref)]
|
2018-08-01 14:30:44 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2018-05-28 07:29:02 +00:00
|
|
|
|
2021-01-19 14:51:10 +00:00
|
|
|
error: creating a reference that is immediately dereferenced
|
|
|
|
--> $DIR/unnecessary_ref.rs:22:16
|
|
|
|
|
|
|
|
|
LL | unsafe { &*(&*package).0 }.hello();
|
|
|
|
| ^^^^^^^^^^^ help: try this: `(*package)`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::ref-in-deref` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-05-28 07:29:02 +00:00
|
|
|
|