Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
issues
/
issue-22008.rs
blob: 004255822669dd89f5a701293650081760e128b8 [
file
] [
log
] [
blame
]
// run-pass
pub
fn
main
()
{
let
command
=
"a"
;
match
command
{
"foo"
=>
println
!(
"foo"
),
_
=>
println
!(
"{}"
,
command
),
}
}