about summary refs log tree commit diff
path: root/tests/ui/expr/if/if-cond-bot.rs
blob: 56bd5ec35f92599686c13f4d05cb0ff7bca590bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ run-fail
//@ error-pattern:quux
//@ needs-subprocess

fn my_err(s: String) -> ! {
    println!("{}", s);
    panic!("quux");
}

fn main() {
    if my_err("bye".to_string()) {
    }
}