]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/pattern/issue-53820-slice-pattern-large-array.rs
slice_patterns: remove gates in tests
[rust.git] / src / test / ui / pattern / issue-53820-slice-pattern-large-array.rs
index c910cded96be44c137f7764c1c670fc32e67f412..1249329206112a11a33e77c9422b1b8c6ff3a16d 100644 (file)
@@ -2,8 +2,6 @@
 
 // This used to cause a stack overflow in the compiler.
 
-#![feature(slice_patterns)]
-
 fn main() {
     const LARGE_SIZE: usize = 1024 * 1024;
     let [..] = [0u8; LARGE_SIZE];