blob: 0bc5b0ee86f7e783091faac37c80a59b6f3c146b [file] [log] [blame]
//! 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; }
}
}