shithub: mc

ref: dc0ce7c68fd5e1a56a13960ba7121a38da0a55cb
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")
	-> id(42)
}