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