shithub: mc

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