shithub: mc

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