4 lines
112 B
Rust
4 lines
112 B
Rust
// error-pattern:quux
|
|
fn my_err(s: str) -> ! { log(error, s); fail "quux"; }
|
|
fn main() { if my_err("bye") { } }
|