aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/unstable-features/trivial_bounds.stderr
blob: 6a3bb94bd07dadf0d8ca557fe914d64ff668b359 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error: Trait bound Inner: Unpin does not depend on any type or lifetime parameters
  --> $DIR/trivial_bounds.rs:15:35
   |
15 |     impl Unpin for A where Inner: Unpin {} //~ ERROR std::marker::Unpin does not depend on any type or lifetime parameters
   |                                   ^^^^^
   |
note: the lint level is defined here
  --> $DIR/trivial_bounds.rs:6:9
   |
6  | #![deny(trivial_bounds)]
   |         ^^^^^^^^^^^^^^

error: Trait bound Wrapper<Inner>: Unpin does not depend on any type or lifetime parameters
  --> $DIR/trivial_bounds.rs:23:44
   |
23 |     impl Unpin for B where Wrapper<Inner>: Unpin {} //~ ERROR std::marker::Unpin does not depend on any type or lifetime parameters
   |                                            ^^^^^