mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 18:09:50 +00:00
12 lines
135 B
Rust
12 lines
135 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
// Issue #961
|
|
|
|
|
|
fn altsimple() {
|
|
match Box::new(true) {
|
|
_ => { }
|
|
}
|
|
}
|
|
pub fn main() { }
|