summary refs log tree commit diff
path: root/src/test/ui/consts/const-match-pattern-arm.rs
blob: 3b985269a56c97b4fef98ed1017c6149f8d92bbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(warnings)]

const x: bool = match Some(true) {
    Some(value) => true,
    //~^ ERROR: constant contains unimplemented expression type [E0019]
    _ => false
};

const y: bool = {
    match Some(true) {
        Some(value) => true,
        //~^ ERROR: constant contains unimplemented expression type [E0019]
        _ => false
    }
};

fn main() {}