shithub: mc

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