rust/src/test/ui/traits/trait-bounds-on-structs-and-enums-xc1.stderr

23 lines
1001 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0277]: the trait bound `f64: trait_bounds_on_structs_and_enums_xc::Trait` is not satisfied
2018-12-25 09:56:47 -06:00
--> $DIR/trait-bounds-on-structs-and-enums-xc1.rs:12:14
2018-08-08 07:28:26 -05:00
|
LL | let bar: Bar<f64> = return;
| ^^^^^^^^ the trait `trait_bounds_on_structs_and_enums_xc::Trait` is not implemented for `f64`
|
::: $DIR/auxiliary/trait_bounds_on_structs_and_enums_xc.rs:9:16
2018-08-08 07:28:26 -05:00
|
LL | pub enum Bar<T:Trait> {
| ----- required by this bound in `trait_bounds_on_structs_and_enums_xc::Bar`
2018-08-08 07:28:26 -05:00
error[E0277]: the trait bound `{integer}: trait_bounds_on_structs_and_enums_xc::Trait` is not satisfied
2018-12-25 09:56:47 -06:00
--> $DIR/trait-bounds-on-structs-and-enums-xc1.rs:8:15
2018-08-08 07:28:26 -05:00
|
LL | let foo = Foo {
| ^^^ the trait `trait_bounds_on_structs_and_enums_xc::Trait` is not implemented for `{integer}`
|
= note: required by `trait_bounds_on_structs_and_enums_xc::Foo`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0277`.