shithub: mc

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