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