error[E0119]: conflicting implementations of trait `Unpin` for type `Foo` --> tests/ui/pin_project/negative_impls_stable.rs:5:1 | 5 | / pin_project_lite::pin_project! { 6 | | struct Foo { 7 | | #[pin] 8 | | pinned: Pinned, 9 | | unpinned: Unpinned, 10 | | } 11 | | } | |_^ conflicting implementation for `Foo` ... 15 | impl Unpin for Foo {} | --------------------------------------- first implementation here | = note: this error originates in the macro `$crate::__pin_project_make_unpin_impl` which comes from the expansion of the macro `pin_project_lite::pin_project` (in Nightly builds, run with -Z macro-backtrace for more info)