shithub: mc

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