Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-22008.rs
blob: b537ce8c2721cf6a1e9274f1b7848d311d63d904 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
pub
fn
main
()
{
let
command
=
"a"
;
match
command
{
"foo"
=>
println
!(
"foo"
),
_
=>
println
!(
"{}"
,
command
),
}
}