rust/tests/ui/rfc-2005-default-binding-mode/slice.rs
2023-01-11 09:32:08 +00:00

8 lines
142 B
Rust

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