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