rust/tests/ui/consts/invalid-inline-const-in-match-arm.rs
2023-07-27 15:51:02 +00:00

10 lines
193 B
Rust

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