summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/issues/issue-62187-encountered-polymorphic-const.rs
blob: fa76aeae901d183c7d9010982665fa385c77ab3c (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;
}