13 lines
247 B
Rust
Raw Normal View History

#![feature(const_trait_impl)]
struct Bug {
inner: [(); match || 1 {
n => n(),
//~^ ERROR the trait bound
2022-10-20 04:19:54 +00:00
//~| ERROR the trait bound
//~| ERROR cannot call non-const closure in constants
}],
}
fn main() {}