]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/pass/match_slice.rs
Auto merge of #104915 - weihanglo:update-cargo, r=ehuss
[rust.git] / src / tools / miri / tests / pass / match_slice.rs
1 fn main() {
2     let x = "hello";
3     match x {
4         "foo" => {}
5         "bar" => {}
6         _ => {}
7     }
8 }