summary refs log tree commit diff
path: root/src/test/run-pass/readalias.rs
blob: 444d447123368ac606595dff591b8a060c7c1c0c (plain)
1
2
3
4
5
6
7
8
9
10
#![allow(dead_code)]




struct Point {x: isize, y: isize, z: isize}

fn f(p: Point) { assert_eq!(p.z, 12); }

pub fn main() { let x: Point = Point {x: 10, y: 11, z: 12}; f(x); }