2018-08-08 07:28:26 -05:00
|
|
|
error[E0277]: the trait bound `u32: Trait` is not satisfied
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/trait-bounds-on-structs-and-enums-in-fns.rs:13:1
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | fn explode(x: Foo<u32>) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Trait` is not implemented for `u32`
|
|
|
|
|
|
|
|
|
note: required by `Foo`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/trait-bounds-on-structs-and-enums-in-fns.rs:3:1
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | struct Foo<T:Trait> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `f32: Trait` is not satisfied
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/trait-bounds-on-structs-and-enums-in-fns.rs:16:1
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | fn kaboom(y: Bar<f32>) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Trait` is not implemented for `f32`
|
|
|
|
|
|
|
|
|
note: required by `Bar`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/trait-bounds-on-structs-and-enums-in-fns.rs:7:1
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | enum Bar<T:Trait> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|