ref: 3ba26321481a71d648b37e6ab001e7d17bb63c67
dir: /test/structlit.myr/
/* checks that we can create struct literals with named initializers.
exits with 42. */
type t = struct
a : int
b : char
c : char[,]
;;
const main = {
var v : t
v = [.a=42, .b='x', .c="foo"]
-> v.a
}