struct A {
  a: i32,
  b: i32
}

let main(): i32 = {
  let a: A = A{ a = 1, b = 2 }

  return 0
}