rust/tests/ui/span/issue-29595.rs

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
}