shithub: mc

ref: 7c0b1067c6f67044cc25d5d4d4e5f1c4e7e98968
dir: /test/structlit.myr/

View raw version
type t = struct
	a	: int
	b	: char
	c	: char[,]
;;

const main = {
	var v : t

	v = [.a=42, .b='x', .c="foo"]
	-> v.a
}