shithub: mc

ref: 3bf2f2e262eebfcc1699d45f6717ae6a07cb32a7
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
}