shithub: mc

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