shithub: mc

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