rust/tests/pass/match_slice.rs
2022-06-20 16:09:45 -07:00

9 lines
111 B
Rust

fn main() {
let x = "hello";
match x {
"foo" => {}
"bar" => {}
_ => {}
}
}