Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
issues
/
issue-14393.rs
blob: 69c3fc15d31415cc88b9fa382f3376ea217fe751 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
fn
main
()
{
match
(
""
,
1
_usize
)
{
(
_
,
42
_usize
)
=>
(),
(
""
,
_
)
=>
(),
_
=>
()
}
}