shithub: mc

ref: 78da203b42b5084a7664e8773f418a4730184d53
dir: /test/recgeneric.myr/

View raw version
use std

type o(@a::integral) = union
	`S @a
;;

type x(@k) = struct
	n  : o(x(@k)#)
;;

const main = {
	var test : x(int)
	std.put("built\n")
}