mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 23:00:46 +00:00
15 lines
170 B
Rust
15 lines
170 B
Rust
//@ run-pass
|
|
|
|
#![feature(box_patterns)]
|
|
|
|
fn simple() {
|
|
match Box::new(true) {
|
|
box true => { }
|
|
_ => { panic!(); }
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
simple();
|
|
}
|