shithub: mc

ref: 1c91b60dd309df7579a781e9ef3888cc6bd3484c
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
}