about summary refs log tree commit diff
path: root/src/test/run-pass/readalias.rs
blob: adc6432d0166e1f830b7968d753acfcac398b71e (plain)
1
2
3
4
5
6
7
8
9
// -*- rust -*-
type point = {x: int, y: int, z: int};

fn f(p: point) { assert (p.z == 12); }

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