shithub: mc

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