summaryrefslogtreecommitdiffstats
path: root/src/test/ui/wf/wf-complex-assoc-type.stderr
blob: ef613e3132d032414874fa926659f39c7d4ce894 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0277]: the trait bound `bool: MyTrait` is not satisfied
  --> $DIR/wf-complex-assoc-type.rs:9:28
   |
LL |     type MyItem = Option<((AssertMyTrait<bool>, u8))>;
   |                            ^^^^^^^^^^^^^^^^^^^ the trait `MyTrait` is not implemented for `bool`
   |
note: required by a bound in `AssertMyTrait`
  --> $DIR/wf-complex-assoc-type.rs:2:25
   |
LL | struct AssertMyTrait<T: MyTrait>(T);
   |                         ^^^^^^^ required by this bound in `AssertMyTrait`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0277`.