Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-37665.rs
blob: db74b1f025987818bbcc74aa682e1e8c8d9bee8c [
file
] [
log
] [
blame
] [
edit
]
//@ compile-flags: -Z unpretty=mir
use
std
::
path
::
MAIN_SEPARATOR
;
fn
main
()
{
let
mut
foo
:
String
=
"hello"
.
to_string
();
foo
.
push
(
MAIN_SEPARATOR
);
println
!(
"{}"
,
foo
);
let
x
:
()
=
0
;
//~ ERROR: mismatched types
}