rust/tests/ui/issues/issue-6557.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
158 B
Rust
Raw Normal View History

// check-pass
#![allow(dead_code)]
// pretty-expanded FIXME #23616
#![feature(box_patterns)]
fn foo(box (_x, _y): Box<(isize, isize)>) {}
pub fn main() {}