ref: 31d5350f573cf2b2c176082ae26de473ee1f885c dir: /test/struct.myr/
type pair = struct a : int b : int ;; const main = { var s : pair s.a = 12 s.b = 30 -> s.a + s.b }