blob: e0d9b25c366d4cde8b854dfe79cc1971c1ae164f [file] [log] [blame]
// 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() {}