summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/invalid-inline-const-in-match-arm.rs
blob: 17acb2d9d17d1dba110328c4e7102390ff097746 (plain)
1
2
3
4
5
6
7
8
9
10
#![allow(incomplete_features)]
#![feature(inline_const_pat)]

fn main() {
    match () {
        const { (|| {})() } => {}
        //~^ ERROR cannot call non-const closure in constants
        //~| ERROR the trait bound
    }
}