shithub: mc

ref: 60cac7ad2c6dde9b5530b179c1b200c7c26339ae
dir: /test/struct_oneval.myr/

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

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