shithub: mc

ref: 4bc1493ff94ecd5cc384b55bbae833c422e67de0
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
}