10 lines
193 B
Rust
10 lines
193 B
Rust
// run-pass
|
|
#![feature(box_patterns)]
|
|
#![feature(box_syntax)]
|
|
|
|
struct Foo { a: isize, b: isize }
|
|
|
|
pub fn main() {
|
|
let box Foo{a, b} = box Foo{a: 100, b: 200};
|
|
assert_eq!(a + b, 300);
|
|
}
|