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

22 lines
753 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0277]: the trait bound `usize: Trait` is not satisfied
2018-12-25 09:56:47 -06:00
--> $DIR/trait-bounds-on-structs-and-enums-locals.rs:15:14
2018-08-08 07:28:26 -05:00
|
LL | struct Foo<T:Trait> {
2020-04-06 00:15:06 -05:00
| ----- required by this bound in `Foo`
...
2018-08-08 07:28:26 -05:00
LL | let baz: Foo<usize> = loop { };
| ^^^^^^^^^^ the trait `Trait` is not implemented for `usize`
error[E0277]: the trait bound `{integer}: Trait` is not satisfied
2018-12-25 09:56:47 -06:00
--> $DIR/trait-bounds-on-structs-and-enums-locals.rs:10:15
2018-08-08 07:28:26 -05:00
|
LL | struct Foo<T:Trait> {
| ------------------- required by `Foo`
...
2018-08-08 07:28:26 -05:00
LL | let foo = Foo {
| ^^^ the trait `Trait` is not implemented for `{integer}`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0277`.