summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-6557.rs
blob: 757e9608f1a1f2152b095dfe92e8040e92927304 (plain)
1
2
3
4
5
6
7
8
9
// check-pass
#![allow(dead_code)]
// pretty-expanded FIXME #23616

#![feature(box_patterns)]

fn foo(box (_x, _y): Box<(isize, isize)>) {}

pub fn main() {}