declare printf(s: cstring, ...): void struct A { a: i32 b: i32 c: i32 d: i64 } let main() = { var a = A{ a = 1, b = 2, c = 3, d = 4 } return a.a }