]> git.lizzy.rs Git - rust.git/blob - tests/ui/traits/bound/on-structs-and-enums-static.stderr
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / tests / ui / traits / bound / on-structs-and-enums-static.stderr
1 error[E0277]: the trait bound `usize: Trait` is not satisfied
2   --> $DIR/on-structs-and-enums-static.rs:9:11
3    |
4 LL | static X: Foo<usize> = Foo {
5    |           ^^^^^^^^^^ the trait `Trait` is not implemented for `usize`
6    |
7 note: required by a bound in `Foo`
8   --> $DIR/on-structs-and-enums-static.rs:5:14
9    |
10 LL | struct Foo<T:Trait> {
11    |              ^^^^^ required by this bound in `Foo`
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0277`.