blob: 989fcc041a097813116c6ecbef7e579ad862020c [file] [log] [blame]
// compile-pass
#![allow(dead_code)]
const PATH_DOT: &[u8] = &[b'.'];
fn match_slice(element: &[u8]) {
match element {
&[] => {}
PATH_DOT => {}
_ => {}
}
}
fn main() {}