blob: ac85964353a342df06eb5b983cd0a9b2f49d60a7 [file] [log] [blame]
// 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() {}