shithub: mc

ref: 48f0c839b6ce7bec4537e48271bcbe6def469a0c
dir: /test/struct_oneval.myr/

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

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