struct A {
  a: i32
  b: i32
  c: i32
  d: i64
}

let main() = {
  let a = A{
    a = 1
    b = 2
    c = 3
    d = 4
  }
  let b = a.a
  return b
}