summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/bad-const-generic-exprs.rs
blob: ca91643edf72735d4a885579c97c17ded0591dd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
struct Wow<const N: usize>;

fn main() {
    let _: Wow<if true {}>;
    //~^ ERROR invalid const generic expression
    //~| HELP expressions must be enclosed in braces to be used as const generic arguments
    let _: Wow<|| ()>;
    //~^ ERROR invalid const generic expression
    //~| HELP expressions must be enclosed in braces to be used as const generic arguments
    let _: Wow<A.b>;
    //~^ ERROR expected one of
    //~| HELP expressions must be enclosed in braces to be used as const generic arguments
    let _: Wow<A.0>;
    //~^ ERROR expected one of
    //~| HELP expressions must be enclosed in braces to be used as const generic arguments

    // FIXME(compiler-errors): This one is still unsatisfying,
    // and probably a case I could see someone typing by accident..
    let _: Wow<[12]>;
    //~^ ERROR expected type, found
    //~| ERROR type provided when a constant was expected
}