rustc/tests/ui/consts/issue-broken-mir.rs
2023-08-02 10:33:26 +02:00

11 lines
144 B
Rust

// run-pass
// https://github.com/rust-lang/rust/issues/27918
fn main() {
match b" " {
b"1234" => {},
_ => {},
}
}