ref: 3ba26321481a71d648b37e6ab001e7d17bb63c67
dir: /test/structasn.myr/
/* tests block assignment of structs. exits with 42.*/
type pair = struct
a : int
b : int
;;
const main = {
var x : pair
var y : pair
x.a = 12
x.b = 30
y = x
-> y.a + y.b
}