summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/drop_non_drop.stderr
blob: 30121033de7eae113ff2025830aae75fa0c24d10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
error: call to `std::mem::drop` with a value that does not implement `Drop`. Dropping such a type only extends its contained lifetimes
  --> $DIR/drop_non_drop.rs:22:5
   |
LL |     drop(Foo);
   |     ^^^^^^^^^
   |
   = note: `-D clippy::drop-non-drop` implied by `-D warnings`
note: argument has type `main::Foo`
  --> $DIR/drop_non_drop.rs:22:10
   |
LL |     drop(Foo);
   |          ^^^

error: call to `std::mem::drop` with a value that does not implement `Drop`. Dropping such a type only extends its contained lifetimes
  --> $DIR/drop_non_drop.rs:37:5
   |
LL |     drop(Baz(Foo));
   |     ^^^^^^^^^^^^^^
   |
note: argument has type `main::Baz<main::Foo>`
  --> $DIR/drop_non_drop.rs:37:10
   |
LL |     drop(Baz(Foo));
   |          ^^^^^^^^

error: aborting due to 2 previous errors