shithub: mc

ref: 6d5d0ec7ee3480347255a9f469c26c8c34b2819a
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
}