mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
13 lines
166 B
Rust
13 lines
166 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
// Issue #961
|
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
fn altsimple() {
|
|
match Box::new(true) {
|
|
_ => { }
|
|
}
|
|
}
|
|
pub fn main() { }
|