rust/tests/ui/consts/issue-broken-mir.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
144 B
Rust
Raw Normal View History

// run-pass
2018-01-16 09:15:41 +00:00
// https://github.com/rust-lang/rust/issues/27918
fn main() {
match b" " {
b"1234" => {},
_ => {},
}
}