Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// Test that return another type in place of ! raises a type mismatch.
fn fail() -> ! {
return "wow"; //~ ERROR mismatched types
}
fn main() {