mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
202 B
Rust
15 lines
202 B
Rust
// check-pass
|
|
#![allow(dead_code)]
|
|
|
|
const PATH_DOT: &[u8] = &[b'.'];
|
|
|
|
fn match_slice(element: &[u8]) {
|
|
match element {
|
|
&[] => {}
|
|
PATH_DOT => {}
|
|
_ => {}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|