rustc/tests/ui/consts/invalid-inline-const-in-match-arm.rs
2023-09-14 08:56:40 +02:00

11 lines
228 B
Rust

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