]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/issue-broken-mir.rs
Add test for presence of read more links
[rust.git] / src / test / 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 }