shithub: mc

ref: d36a67129c192ca9092cb9189fca535ed9a63a08
dir: /test/nestucon.myr/

View raw version
use std

type t = struct
	x : union
		`Int int
		`Str byte[:]
	;;
;;

const main = {
	var a : t

	a = [.x = `Str "asdf"]
	match a
	| [.x=`Str s]:	std.put("%s\n", s)
	| _:	std.die("Impossible match failure\n")
	;;
}