summaryrefslogtreecommitdiffstats
path: root/tests/ui/typeck/repeat-expr-checks-wf.rs
blob: b8a2a0ceb58807f8e39be26950ffd30c8b3eb133 (plain)
1
2
3
4
5
6
7
8
9
10
trait Foo {
    const ASSOC: [u8];
}

fn bar<T: Foo>() {
    let a = [T::ASSOC; 2];
    //~^ ERROR: the size for values of type `[u8]` cannot be known at compilation time
}

fn main() {}