summary refs log tree commit diff
path: root/src/test/run-fail/if-cond-bot.rs
blob: 71b7323240dbaf1082d73c1813cf65e6af666247 (plain)
1
2
3
// error-pattern:quux
fn my_err(s: str) -> ! { log(error, s); fail "quux"; }
fn main() { if my_err("bye") { } }