summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/forget_non_drop.stderr
blob: 194e37c8b42472b2118e6c18776e5d630a1d9902 (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::forget` with a value that does not implement `Drop`. Forgetting such a type is the same as dropping it
  --> $DIR/forget_non_drop.rs:13:5
   |
LL |     forget(Foo);
   |     ^^^^^^^^^^^
   |
note: argument has type `main::Foo`
  --> $DIR/forget_non_drop.rs:13:12
   |
LL |     forget(Foo);
   |            ^^^
   = note: `-D clippy::forget-non-drop` implied by `-D warnings`

error: call to `std::mem::forget` with a value that does not implement `Drop`. Forgetting such a type is the same as dropping it
  --> $DIR/forget_non_drop.rs:24:5
   |
LL |     forget(Baz(Foo));
   |     ^^^^^^^^^^^^^^^^
   |
note: argument has type `main::Baz<main::Foo>`
  --> $DIR/forget_non_drop.rs:24:12
   |
LL |     forget(Baz(Foo));
   |            ^^^^^^^^

error: aborting due to 2 previous errors