summary refs log tree commit diff
path: root/src/test/ui/unique/unique-log.rs
blob: 279777177061d5b1f32b8108383b8b6ffefc4c0e (plain)
1
2
3
4
5
6
7
// run-pass
#![feature(box_syntax)]

pub fn main() {
    let i: Box<_> = box 100;
    println!("{}", i);
}