1 2 3 4 5 6 7 8 9
// https://github.com/rust-lang/rust/issues/6557 //@ check-pass #![allow(dead_code)] #![feature(box_patterns)] fn foo(box (_x, _y): Box<(isize, isize)>) {} pub fn main() {}