10 lines
217 B
Rust
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
|
|
}
|
|
}
|