mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-05 11:33:04 +00:00
11 lines
118 B
Rust
11 lines
118 B
Rust
// run-pass
|
|
#![feature(box_syntax)]
|
|
|
|
fn test() -> Box<i32> {
|
|
box 42
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(*test(), 42);
|
|
}
|