shithub: mc

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