2022-11-11 17:21:53 +00:00
|
|
|
#![feature(inline_const_pat)]
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
match () {
|
|
|
|
const { (|| {})() } => {}
|
|
|
|
//~^ ERROR cannot call non-const closure in constants
|
2024-07-13 17:24:50 +02:00
|
|
|
//~| ERROR could not evaluate constant pattern
|
2022-11-11 17:21:53 +00:00
|
|
|
}
|
|
|
|
}
|