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