shithub: mc

ref: a54b19e53f7b942c3c59a8f687fb590ebfec3209
dir: /test/struct_oneval.myr/

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

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