rust/tests/ui/consts/issue-68542-closure-in-array-len.rs
2023-01-11 09:32:08 +00:00

10 lines
217 B
Rust

// Regression test for issue #68542
// Tests that we don't ICE when a closure appears
// in the length part of an array.
struct Bug {
a: [(); (|| { 0 })()] //~ ERROR cannot call non-const closure
}
fn main() {}