summaryrefslogtreecommitdiffstats
path: root/tests/ui/generics/generic-unique.rs
blob: 2f34712ecfbf375edf11b4b62ea495028997584b (plain)
1
2
3
4
5
6
7
8
9
10
11
// run-pass
#![allow(dead_code)]

struct Triple<T> { x: T, y: T, z: T }

fn box_it<T>(x: Triple<T>) -> Box<Triple<T>> { return Box::new(x); }

pub fn main() {
    let x: Box<Triple<isize>> = box_it::<isize>(Triple{x: 1, y: 2, z: 3});
    assert_eq!(x.y, 2);
}