blob: 07d3f51edce5ea80eb8baf6e4d3559e7c5bd4385 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#![feature(const_trait_impl)]
struct Bug {
inner: [(); match || 1 {
n => n(),
//~^ ERROR the trait bound
//~| ERROR the trait bound
//~| ERROR cannot call non-const closure in constants
}],
}
fn main() {}
|