blob: 4065c4fb85713f3836cf1172c98672a3d1fd5971 (
plain)
1
2
3
4
5
6
7
8
9
10
|
error[E0277]: the trait bound `u8: Tr` is not satisfied
--> $DIR/issue-29595.rs:18:17
|
18 | let a: u8 = Tr::C; //~ ERROR the trait bound `u8: Tr` is not satisfied
| ^^^^^ the trait `Tr` is not implemented for `u8`
|
= note: required by `Tr::C`
error: aborting due to previous error(s)
|