rust/tests/ui/consts/invalid-inline-const-in-match-arm.rs

10 lines
217 B
Rust

#![feature(inline_const_pat)]
fn main() {
match () {
const { (|| {})() } => {}
//~^ ERROR cannot call non-const closure in constants
//~| ERROR could not evaluate constant pattern
}
}