summary refs log tree commit diff
path: root/src/test/ui/const-generics/issues/issue-62187-encountered-polymorphic-const.rs
blob: 4e5e4d045c8f226c9e661621613828735072f9c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// run-pass

#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash

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; //~ WARN unused variable
}