shithub: mc

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