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

fn f<T>(t: T) -> T {
    let t1 = t;
    t1
}

pub fn main() {
    let t = f::<Box<_>>(Box::new(100));
    assert_eq!(t, Box::new(100));
}