]> git.lizzy.rs Git - rust.git/blob - tests/ui/unnecessary_ref.stderr
436f4bcf7380465ac7c96598d38b8b759568126f
[rust.git] / tests / ui / unnecessary_ref.stderr
1 error: creating a reference that is immediately dereferenced
2   --> $DIR/unnecessary_ref.rs:13:17
3    |
4 LL |     let inner = (&outer).inner;
5    |                 ^^^^^^^^ help: try this: `outer`
6    |
7 note: the lint level is defined here
8   --> $DIR/unnecessary_ref.rs:10:8
9    |
10 LL | #[deny(clippy::ref_in_deref)]
11    |        ^^^^^^^^^^^^^^^^^^^^
12
13 error: creating a reference that is immediately dereferenced
14   --> $DIR/unnecessary_ref.rs:22:16
15    |
16 LL |     unsafe { &*(&*package).0 }.hello();
17    |                ^^^^^^^^^^^ help: try this: `(*package)`
18    |
19    = note: `-D clippy::ref-in-deref` implied by `-D warnings`
20
21 error: aborting due to 2 previous errors
22