summaryrefslogtreecommitdiffstats
path: root/src/test/ui/binop/binop-panic.rs
blob: 44cdfffeeb7a7fd4b22e1a0c5408799bf9121962 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// run-fail
// error-pattern:quux
// ignore-emscripten no processes

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

fn main() {
    3_usize == my_err("bye".to_string());
}