DEBSOURCES
Skip Quicknav
sources / rustc / 1.88.0%2Bdfsg1-1 / tests / ui / closures / diverging-closure.rs
12345678910
//@ run-fail //@ error-pattern:oops //@ needs-subprocess fn main() { let func = || -> ! { panic!("oops"); }; func(); }