mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 19:57:10 +00:00
10 lines
181 B
Rust
10 lines
181 B
Rust
//@ run-pass
|
|
#![feature(box_patterns)]
|
|
|
|
struct Foo { a: isize, b: isize }
|
|
|
|
pub fn main() {
|
|
let box Foo{ a, b } = Box::new(Foo { a: 100, b: 200 });
|
|
assert_eq!(a + b, 300);
|
|
}
|