about summary refs log tree commit diff
path: root/tests/ui/return/ret-bang.rs
blob: f0d529ad6a693c5b105905e895d8bacfbfa49d5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ run-pass

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

fn okay(i: usize) -> isize {
    if i == 3 {
        my_err("I don't like three".to_string());
    } else {
        return 42;
    }
}

pub fn main() { okay(4); }