rust/tests/pass/match_slice.rs
2022-06-01 10:53:38 -04:00

9 lines
114 B
Rust

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