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