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

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

9 lines
151 B
Rust
Raw Normal View History

2016-08-11 12:22:34 -05:00
// Test that return another type in place of ! raises a type mismatch.
2016-08-10 09:22:45 -05:00
fn fail() -> ! {
return "wow"; //~ ERROR mismatched types
}
fn main() {
}