mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-30 08:16:56 +00:00
12 lines
208 B
Rust
12 lines
208 B
Rust
//! Regression test for https://github.com/rust-lang/rust/issues/16010
|
|
|
|
//@ run-pass
|
|
#![allow(dead_code)]
|
|
|
|
fn main() {
|
|
if true { return }
|
|
match () {
|
|
() => { static MAGIC: usize = 0; }
|
|
}
|
|
}
|