rust/tests/ui/rfcs/rfc-2005-default-binding-mode/slice.rs
2023-06-05 16:09:46 +00:00

8 lines
142 B
Rust

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