shithub: mc

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