]> git.proxmox.com Git - rustc.git/blob - src/tools/miri/tests/run-pass/match_slice.rs
New upstream version 1.22.1+dfsg1
[rustc.git] / src / tools / miri / tests / run-pass / match_slice.rs
1 fn main() {
2 let x = "hello";
3 match x {
4 "foo" => {},
5 "bar" => {},
6 _ => {},
7 }
8 }