blob: 31a13784b478d3213628601078239bd3645a6d1b [file] [log] [blame]
// Test that we get the usual error that we'd get for any other return type and not something about
// diverging functions not being able to return.
fn fail() -> ! {
return; //~ ERROR in a function whose return type is not
}
fn main() {
}