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