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