shithub: mc

ref: d4b076847c6216bf3cc329bdd9c73a2126a8fe7b
dir: /test/generic.myr/

View raw version
use std
/* checks that simple generics are specialized correctly. exits with 42. */
generic id = {a:@a
	-> a
}

const main = {
	id("adsf")
	std.exit(id(42))
}