shithub: mc

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