blob: a6bf61803cf8521e2baf7c3b688c28ef033412aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// run-pass
#![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); }
|