blob: 8665da89758caf8b8ba555450ab291ba3c9cd259 [file] [log] [blame]
// run-pass
pub fn main() {
// exits early if println! evaluates its arguments, otherwise it
// will hit the panic.
println!("{:?}", { if true { return; } });
panic!();
}