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