Sign in
◑
Theme
rust
/
rust
/
08ec41ea3dfd2d30a5747a084d0dbc79fba227d6
/
.
/
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
!();
}