rust/tests/ui/binding/nil-pattern.rs

4 lines
66 B
Rust

//@ run-pass
pub fn main() { let x = (); match x { () => { } } }