Sign in
◑
Theme
rust
/
rust
/
4dfd30ec844e10b8993deebb908fddff25c2ef26
/
.
/
tests
/
ui
/
return
/
return-unit-from-diverging.rs
blob: 48417599b1d875962f4961d8402dbfebba86660d [
file
]
// 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
()
{
}