shithub: mc

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