• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1error[E0277]: the trait bound `u8: Trait` is not satisfied
2  --> $DIR/issue-95665.rs:14:17
3   |
4LL |     static VAR: Struct<u8>;
5   |                 ^^^^^^^^^^ the trait `Trait` is not implemented for `u8`
6   |
7note: required by a bound in `Struct`
8  --> $DIR/issue-95665.rs:6:22
9   |
10LL | pub struct Struct<T: Trait> {
11   |                      ^^^^^ required by this bound in `Struct`
12
13error: aborting due to previous error
14
15For more information about this error, try `rustc --explain E0277`.
16