]> git.proxmox.com Git - rustc.git/blob - tests/ui/traits/bound/on-structs-and-enums-locals.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / traits / bound / on-structs-and-enums-locals.stderr
1 error[E0277]: the trait bound `usize: Trait` is not satisfied
2 --> $DIR/on-structs-and-enums-locals.rs:15:14
3 |
4 LL | let baz: Foo<usize> = loop { };
5 | ^^^^^^^^^^ the trait `Trait` is not implemented for `usize`
6 |
7 note: required by a bound in `Foo`
8 --> $DIR/on-structs-and-enums-locals.rs:5:14
9 |
10 LL | struct Foo<T:Trait> {
11 | ^^^^^ required by this bound in `Foo`
12
13 error[E0277]: the trait bound `{integer}: Trait` is not satisfied
14 --> $DIR/on-structs-and-enums-locals.rs:11:12
15 |
16 LL | x: 3
17 | ^ the trait `Trait` is not implemented for `{integer}`
18 |
19 note: required by a bound in `Foo`
20 --> $DIR/on-structs-and-enums-locals.rs:5:14
21 |
22 LL | struct Foo<T:Trait> {
23 | ^^^^^ required by this bound in `Foo`
24
25 error: aborting due to 2 previous errors
26
27 For more information about this error, try `rustc --explain E0277`.