error: trait bound PhantomPinned: Unpin does not depend on any type or lifetime parameters --> tests/ui/unstable-features/trivial_bounds.rs:16:43 | 16 | impl Unpin for A where PhantomPinned: Unpin {} //~ ERROR Unpin does not depend on any type or lifetime parameters | ^^^^^ | note: the lint level is defined here --> tests/ui/unstable-features/trivial_bounds.rs:6:9 | 6 | #![deny(trivial_bounds)] | ^^^^^^^^^^^^^^ error: trait bound Inner: Unpin does not depend on any type or lifetime parameters --> tests/ui/unstable-features/trivial_bounds.rs:20:35 | 20 | impl Unpin for B where Inner: Unpin {} //~ ERROR Unpin does not depend on any type or lifetime parameters | ^^^^^ error: trait bound Wrapper: Unpin does not depend on any type or lifetime parameters --> tests/ui/unstable-features/trivial_bounds.rs:28:44 | 28 | impl Unpin for C where Wrapper: Unpin {} //~ ERROR Unpin does not depend on any type or lifetime parameters | ^^^^^