ref: 89e3217a0a604f94c68b9993a72166f6aede0b47
dir: /test/structret.myr/
/* tests returning large structs. should exit with 42. */
type pair = struct
a : int
b : int
;;
const f = {
var s
s.a = 12
s.b = 30
-> s
}
const main = {
var s : pair
s = f()
-> s.a + s.b
}