mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
221 B
Rust
12 lines
221 B
Rust
|
//@ check-pass
|
||
|
//@ dont-check-compiler-stdout
|
||
|
//@ compile-flags: -Z unpretty=mir-cfg
|
||
|
|
||
|
// This checks that unpretty=mir-cfg does not panic. See #81918.
|
||
|
|
||
|
const TAG: &'static str = "ABCD";
|
||
|
|
||
|
fn main() {
|
||
|
if TAG == "" {}
|
||
|
}
|