1error[E0119]: conflicting implementations of trait `pin_project::UnsafeUnpin` for type `Foo<_, _>`: 2 --> $DIR/impl-unsafe-unpin.rs:3:1 3 | 43 | #[pin_project] //~ ERROR E0119 5 | ^^^^^^^^^^^^^^ conflicting implementation for `Foo<_, _>` 6... 710 | unsafe impl<T, U> UnsafeUnpin for Foo<T, U> where T: Unpin {} 8 | ---------------------------------------------------------- first implementation here 9 | 10 = note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info) 11 12error[E0119]: conflicting implementations of trait `pin_project::UnsafeUnpin` for type `Bar<_, _>`: 13 --> $DIR/impl-unsafe-unpin.rs:12:1 14 | 1512 | #[pin_project] //~ ERROR E0119 16 | ^^^^^^^^^^^^^^ conflicting implementation for `Bar<_, _>` 17... 1819 | unsafe impl<T, U> UnsafeUnpin for Bar<T, U> {} 19 | ------------------------------------------- first implementation here 20 | 21 = note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info) 22 23error[E0119]: conflicting implementations of trait `pin_project::UnsafeUnpin` for type `Baz<_, _>`: 24 --> $DIR/impl-unsafe-unpin.rs:21:1 25 | 2621 | #[pin_project] //~ ERROR E0119 27 | ^^^^^^^^^^^^^^ conflicting implementation for `Baz<_, _>` 28... 2928 | unsafe impl<T: Unpin, U: Unpin> UnsafeUnpin for Baz<T, U> {} 30 | --------------------------------------------------------- first implementation here 31 | 32 = note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info) 33