2018-08-08 07:28:26 -05:00
|
|
|
error[E0277]: the trait bound `usize: Trait` is not satisfied
|
2021-02-08 16:15:45 -06:00
|
|
|
--> $DIR/on-structs-and-enums-locals.rs:15:14
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-08-24 16:44:43 -05:00
|
|
|
LL | struct Foo<T:Trait> {
|
2020-04-06 00:15:06 -05:00
|
|
|
| ----- required by this bound in `Foo`
|
2019-08-24 16:44:43 -05:00
|
|
|
...
|
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
|
2021-02-08 16:15:45 -06:00
|
|
|
--> $DIR/on-structs-and-enums-locals.rs:10:15
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let foo = Foo {
|
|
|
|
| ^^^ the trait `Trait` is not implemented for `{integer}`
|
2021-07-17 13:13:50 -05:00
|
|
|
|
|
|
|
|
note: required by `Foo`
|
|
|
|
--> $DIR/on-structs-and-enums-locals.rs:5:1
|
|
|
|
|
|
|
|
|
LL | struct Foo<T:Trait> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|