shithub: mc

ref: 1b37b97c96f832dd5623e2361f8b389c3057153e
dir: /test/genericcall.myr/

View raw version
const f = {
	-> 42
}

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

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