shithub: mc

ref: f75f5261a8eed99784bab6274d31dbd00d6d3f76
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
}