]> git.proxmox.com Git - rustc.git/blob - src/test/ui/expr/if/if-cond-bot.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / expr / if / if-cond-bot.rs
1 // run-fail
2 // error-pattern:quux
3 // ignore-emscripten no processes
4
5 fn my_err(s: String) -> ! {
6 println!("{}", s);
7 panic!("quux");
8 }
9
10 fn main() {
11 if my_err("bye".to_string()) {
12 }
13 }