rust/tests/run-pass/issue-17877.rs

17 lines
455 B
Rust
Raw Normal View History

//ignore-windows: Causes a stack overflow?!? Likely a rustc bug: https://github.com/rust-lang/rust/issues/53820
2018-12-18 14:49:01 -06:00
//FIXME: Once that bug is fixed, increase the size to 16*1024 and enable on all platforms.
2016-09-28 11:22:09 -05:00
#![feature(slice_patterns)]
fn main() {
assert_eq!(match [0u8; 1024] {
_ => 42_usize,
}, 42_usize);
assert_eq!(match [0u8; 1024] {
[1, _..] => 0_usize,
[0, _..] => 1_usize,
_ => 2_usize
}, 1_usize);
}