shithub: mc

ref: 25e411cf4abf1437c5e7bfebbe8e1190a921d2dd
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
}