]> git.proxmox.com Git - rustc.git/blame - src/test/ui/pattern/issue-53820-slice-pattern-large-array.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / pattern / issue-53820-slice-pattern-large-array.rs
CommitLineData
60c5eb7d
XL
1// check-pass
2
3// This used to cause a stack overflow in the compiler.
4
5#![feature(slice_patterns)]
6
7fn main() {
8 const LARGE_SIZE: usize = 1024 * 1024;
9 let [..] = [0u8; LARGE_SIZE];
10 match [0u8; LARGE_SIZE] {
11 [..] => {}
12 }
13}