about summary refs log tree commit diff
path: root/tests/ui/macros/conditional-debug-macro-on.rs
blob: 2b726378fba5781dee1ba1171303a86d3b9d02ec (plain)
1
2
3
4
5
6
7
8
//@ run-pass
pub fn main() {
    // exits early if println! evaluates its arguments, otherwise it
    // will hit the panic.
    println!("{:?}", { if true { return; } });

    panic!();
}