about summary refs log tree commit diff
path: root/tests/ui/box/unit/unique-fn-ret.rs
blob: a819dc4a5ab638b358ca8d62627817bb605331ef (plain)
1
2
3
4
5
6
7
8
9
//@ run-pass

fn f() -> Box<isize> {
    Box::new(100)
}

pub fn main() {
    assert_eq!(f(), Box::new(100));
}