rust/tests/ui/return/return-unit-from-diverging.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
245 B
Rust
Raw Normal View History

2016-08-11 12:22:34 -05:00
// 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.
2016-08-10 09:22:45 -05:00
fn fail() -> ! {
return; //~ ERROR in a function whose return type is not
}
fn main() {
}