shithub: mc

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