about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/unnecessary_ref.stderr
blob: 436f4bcf7380465ac7c96598d38b8b759568126f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
error: creating a reference that is immediately dereferenced
  --> $DIR/unnecessary_ref.rs:13:17
   |
LL |     let inner = (&outer).inner;
   |                 ^^^^^^^^ help: try this: `outer`
   |
note: the lint level is defined here
  --> $DIR/unnecessary_ref.rs:10:8
   |
LL | #[deny(clippy::ref_in_deref)]
   |        ^^^^^^^^^^^^^^^^^^^^

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