shithub: mc

ref: 18c7dda69e7a9d42088098a70e28cfb731b8c3a8
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
}