shithub: mc

ref: e24bcc37239283534785e2e2a31393f20ae6c9b7
dir: /test/genericcall.myr/

View raw version
const f = {
	-> 42
}

generic id = {a:@a
	-> f()
}

const main = {
	id("adsf")
	-> id(42)
}