blob: f8cdccba27e202854b49ffe8ace1368af77f68b5 [file] [log] [blame]
fn f() -> String { //~ ERROR mismatched types
0u8;
"bla".to_string();
}
fn g() -> String { //~ ERROR mismatched types
"this won't work".to_string();
"removeme".to_string();
}
fn main() {}