shithub: mc

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