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