blob: ff0c8ecda8edb188f6149fed1b0539fd2b39b39e [file] [log] [blame] [edit]
pub trait F {
const B: u8;
}
impl F for u16 {
const B: u8 = 3;
}