shithub: mc

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