]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/generic-fn.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / run-pass / generic-fn.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![allow(dead_assignment)]
12
13 fn id<T>(x: T) -> T { return x; }
14
15 #[derive(Copy, Clone)]
16 struct Triple {x: isize, y: isize, z: isize}
17
18 pub fn main() {
19     let mut x = 62;
20     let mut y = 63;
21     let a = 'a';
22     let mut b = 'b';
23     let p: Triple = Triple {x: 65, y: 66, z: 67};
24     let mut q: Triple = Triple {x: 68, y: 69, z: 70};
25     y = id::<isize>(x);
26     println!("{}", y);
27     assert_eq!(x, y);
28     b = id::<char>(a);
29     println!("{}", b);
30     assert_eq!(a, b);
31     q = id::<Triple>(p);
32     x = p.z;
33     y = q.z;
34     println!("{}", y);
35     assert_eq!(x, y);
36 }