shithub: mc

ref: 1ee7b711a9622a60058e33f5a2b4e27bab47a42f
dir: /test/struct_oneval.myr/

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

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