]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/conditional-debug-macro-on.rs
Add 'compiler/rustc_codegen_gcc/' from commit 'afae271d5d3719eeb92c18bc004bb6d1965a5f3f'
[rust.git] / src / test / ui / macros / conditional-debug-macro-on.rs
1 // run-pass
2 pub fn main() {
3     // exits early if println! evaluates its arguments, otherwise it
4     // will hit the panic.
5     println!("{:?}", { if true { return; } });
6
7     panic!();
8 }