blob: aa091ca594aababcb3f46914f28cb84ecc179700 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// compile-pass
#![allow(dead_code)]
// pretty-expanded FIXME #23616
#![feature(box_patterns)]
#![feature(box_syntax)]
fn foo(box (_x, _y): Box<(isize, isize)>) {}
pub fn main() {}
|