2023-07-27 10:51:02 -05:00
|
|
|
// known-bug: #110395
|
2022-10-12 22:10:00 -05:00
|
|
|
#![feature(const_trait_impl)]
|
|
|
|
|
|
|
|
struct Bug {
|
|
|
|
inner: [(); match || 1 {
|
|
|
|
n => n(),
|
2023-07-27 10:51:02 -05:00
|
|
|
//FIXME ~^ ERROR the trait bound
|
|
|
|
//FIXME ~| ERROR the trait bound
|
|
|
|
//FIXME ~| ERROR cannot call non-const closure in constants
|
2022-10-12 22:10:00 -05:00
|
|
|
}],
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|