aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/pinned_drop/forget-pinned-drop-impl.stderr
blob: d2185455be5308aa63ffbeb3097b7fd1a67bbc14 (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0277]: the trait bound `Struct: PinnedDrop` is not satisfied
   --> $DIR/forget-pinned-drop-impl.rs:3:15
    |
3   | #[pin_project(PinnedDrop)] //~ ERROR E0277
    |               ^^^^^^^^^^ the trait `PinnedDrop` is not implemented for `Struct`
    |
note: required by `pin_project::__private::PinnedDrop::drop`
   --> $DIR/lib.rs:186:9
    |
186 |         unsafe fn drop(self: Pin<&mut Self>);
    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^