blob: 778e4a31d15f6c703d07b4e03521107d7128fc0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//@ run-pass
pub trait BitLen: Sized {
const BIT_LEN: usize;
}
impl<const L: usize> BitLen for [u8; L] {
const BIT_LEN: usize = 8 * L;
}
fn main() {
let _foo = <[u8; 2]>::BIT_LEN;
}
|