8 lines
130 B
Rust
8 lines
130 B
Rust
|
#![feature(custom_attribute)]
|
||
|
#![allow(dead_code, unused_attributes)]
|
||
|
|
||
|
#[miri_run]
|
||
|
fn make_box() -> Box<i32> {
|
||
|
Box::new(42)
|
||
|
}
|