rust/src/test/ui/rfc-2005-default-binding-mode/slice.rs

8 lines
142 B
Rust

pub fn main() {
let sl: &[u8] = b"foo";
match sl { //~ ERROR non-exhaustive patterns
[first, remainder @ ..] => {},
};
}