summaryrefslogtreecommitdiffstats
path: root/tests/ui/type-alias-impl-trait/impl_trait_for_tait_bound2.stderr
blob: a6440f02c27d856b6e022de13ca933b15f9c0071 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0277]: the trait bound `Foo: Yay` is not satisfied
  --> $DIR/impl_trait_for_tait_bound2.rs:11:14
   |
LL |     is_yay::<Foo>();
   |              ^^^ the trait `Yay` is not implemented for `Foo`
   |
   = help: the trait `Yay` is implemented for `u32`
note: required by a bound in `is_yay`
  --> $DIR/impl_trait_for_tait_bound2.rs:14:14
   |
LL | fn is_yay<T: Yay>() { }
   |              ^^^ required by this bound in `is_yay`

error: aborting due to previous error

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