Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
pub fn main() {
let sl: &[u8] = b"foo";
match sl { //~ ERROR non-exhaustive patterns
[first, remainder @ ..] => {},
};
}