Sign in
rust
/
rust
/
1f2b0900a702d4947d8f11ea7b162c3af1626e3c
/
.
/
tests
/
ui
/
macros
/
conditional-debug-macro-on.rs
blob: 2b726378fba5781dee1ba1171303a86d3b9d02ec [
file
]
//@ run-pass
pub
fn
main
()
{
// exits early if println! evaluates its arguments, otherwise it
// will hit the panic.
println
!(
"{:?}"
,
{
if
true
{
return
;
}
});
panic
!();
}