rust/test/heap.rs

8 lines
130 B
Rust
Raw Normal View History

2016-03-14 23:05:50 -05:00
#![feature(custom_attribute)]
#![allow(dead_code, unused_attributes)]
#[miri_run]
fn make_box() -> Box<i32> {
Box::new(42)
}