shithub: mc

ref: 9cb3a0f22ac95f75e87e944b95b6c5a13a4eb729
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))
}