rust/tests/ui/block-result/issue-13428.rs

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

17 lines
358 B
Rust
Raw Normal View History

// Regression test for #13428
fn foo() -> String { //~ ERROR mismatched types
format!("Hello {}",
"world")
// Put the trailing semicolon on its own line to test that the
// note message gets the offending semicolon exactly
;
}
fn bar() -> String { //~ ERROR mismatched types
"foobar".to_string()
;
}
pub fn main() {}