shithub: mc

ref: 5f1c8993158af2cd23d685c123b83bcb5c0d42fc
dir: /test/struct_oneval.myr/

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

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