rust/tests/ui/pattern/usefulness/issue-53820-slice-pattern-large-array.rs
2024-02-16 20:02:50 +00:00

12 lines
250 B
Rust

//@ check-pass
// This used to cause a stack overflow during exhaustiveness checking in the compiler.
fn main() {
const LARGE_SIZE: usize = 1024 * 1024;
let [..] = [0u8; LARGE_SIZE];
match [0u8; LARGE_SIZE] {
[..] => {}
}
}