rust/tests/ui/span/issue-29595.rs
2023-01-11 09:32:08 +00:00

8 lines
122 B
Rust

trait Tr {
const C: Self;
}
fn main() {
let a: u8 = Tr::C; //~ ERROR the trait bound `u8: Tr` is not satisfied
}