]> git.lizzy.rs Git - rust.git/blob - test/heap.rs
Normalize test file modes.
[rust.git] / test / heap.rs
1 #![feature(custom_attribute, box_syntax)]
2 #![allow(dead_code, unused_attributes)]
3
4 #[miri_run]
5 fn make_box() -> Box<(i16, i16)> {
6     Box::new((1, 2))
7 }
8
9 #[miri_run]
10 fn make_box_syntax() -> Box<(i16, i16)> {
11     box (1, 2)
12 }