blob: 2c86f55cf25957654e37f65643cbcf98b0ee768c [file] [log] [blame]
//@ run-fail
//@ error-pattern:oops
//@ needs-subprocess
fn main() {
let func = || -> ! {
panic!("oops");
};
func();
}