2022-11-11 17:21:53 +00:00
|
|
|
#![allow(incomplete_features)]
|
|
|
|
#![feature(inline_const_pat)]
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
match () {
|
|
|
|
const { (|| {})() } => {}
|
|
|
|
//~^ ERROR cannot call non-const closure in constants
|
2023-03-24 09:17:51 +00:00
|
|
|
//~| ERROR the trait bound
|
2022-11-11 17:21:53 +00:00
|
|
|
}
|
|
|
|
}
|