summary refs log tree commit diff
path: root/src/test/ui/generics/generic-unique.rs
blob: d36504c75dd9c6e73f46be86659534a8b5cc05bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// run-pass
#![allow(dead_code)]
#![feature(box_syntax)]

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

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

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