about summary refs log tree commit diff
path: root/tests/ui/unpretty/box.rs
blob: 83fdeff7a17964470a51e9790b854572c12858b0 (plain)
1
2
3
4
5
6
7
8
//@ compile-flags: -Zunpretty=thir-tree
//@ check-pass

#![feature(liballoc_internals)]

fn main() {
    let _ = std::boxed::box_new(1);
}