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