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