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