Sign in
rust
/
rust
/
e4375da4e8fcd40ea5a43e72a256db5cbfacf156
/
.
/
tests
/
ui
/
binding
/
nil-pattern.rs
blob: 68dbfe3b453161f50794f26cd005d2b1311d7962 [
file
] [
log
] [
blame
]
//@ run-pass
pub
fn
main
()
{
let
x
=
();
match
x
{
()
=>
{
}
}
}