about summary refs log tree commit diff
path: root/tests/ui/binding/nil-pattern.rs
blob: 68dbfe3b453161f50794f26cd005d2b1311d7962 (plain)
1
2
3
//@ run-pass

pub fn main() { let x = (); match x { () => { } } }