Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
block-result
/
consider-removing-last-semi.rs
blob: 4991d24b26cced93060180bc8763c517ed2251e1 [
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
()
{}