mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
10 lines
176 B
Rust
10 lines
176 B
Rust
// 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() {}
|