blob: e40a63ef2003be05d957701bb79645cc8b1ea608 [file] [log] [blame]
fn main() {
let x = "hello";
match x {
"foo" => {}
"bar" => {}
_ => {}
}
}