]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2005-default-binding-mode/slice.rs
slice_patterns: remove gates in tests
[rust.git] / src / test / ui / rfc-2005-default-binding-mode / slice.rs
1 pub fn main() {
2     let sl: &[u8] = b"foo";
3
4     match sl { //~ ERROR non-exhaustive patterns
5         [first, remainder @ ..] => {},
6     };
7 }