shithub: mc

ref: 00963a8a8348d7ef25eaa31cf4b0b4a3cc4036d3
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
}