shithub: mc

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