blob: 0b0bd4f6ab15b48f83d1d90a271368c0a04a5e18 [file] [log] [blame]
error[E0277]: the trait bound `f64: trait_bounds_on_structs_and_enums_xc::Trait` is not satisfied
--> $DIR/trait-bounds-on-structs-and-enums-xc1.rs:22:14
|
LL | let bar: Bar<f64> = return;
| ^^^^^^^^ the trait `trait_bounds_on_structs_and_enums_xc::Trait` is not implemented for `f64`
|
= note: required by `trait_bounds_on_structs_and_enums_xc::Bar`
error[E0277]: the trait bound `{integer}: trait_bounds_on_structs_and_enums_xc::Trait` is not satisfied
--> $DIR/trait-bounds-on-structs-and-enums-xc1.rs:18:15
|
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`.