blob: ec088cbc77ace479890a81a5c01e3471d0b48179 [file] [log] [blame]
struct S {
m : i32,
n : u32,
}
fn f() -> u32 {
var a = S();
return a.n;
}