blob: 87d7c4cfdf93f068176c955c03ef40000b5cc4d0 [file] [log] [blame]
trait Tr {
const C: Self;
}
fn main() {
let a: u8 = Tr::C; //~ ERROR the trait bound `u8: Tr` is not satisfied
}