]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/issue-broken-mir.rs
Rollup merge of #106963 - compiler-errors:scope-expr-dupe, r=michaelwoerister
[rust.git] / tests / ui / consts / issue-broken-mir.rs
1 // run-pass
2
3 // https://github.com/rust-lang/rust/issues/27918
4
5 fn main() {
6     match b"    " {
7         b"1234" => {},
8         _ => {},
9     }
10 }