summaryrefslogtreecommitdiffstats
path: root/tests/ui/pattern/usefulness/irrefutable-unit.rs
blob: dd8f03b6dbd591b9892e8c3c924395bfd43b4f16 (plain)
1
2
3
4
5
6
// run-pass
// pretty-expanded FIXME #23616

pub fn main() {
    let ((),()) = ((),());
}