shithub: mc

ref: 1b49f96477ee3dc7c36dc9dd6fda0c081b6aafbd
dir: /test/union-extraarg.myr/

View raw version
use std
/*
should fail to compile becuse
we're constructing a union that
with too many arguments.
*/
type u = union
	`Foo
;;

const main = {
	`Foo 123
}