shithub: mc

ref: 3e622c8ee2d7aac48da5e8614b88aaa4ea550aae
dir: /test/struct_oneval.myr/

View raw version
type val = struct
	a : int
;;

const main = {
	var s : val
	s.a = 12
	-> s.a
}