ref: cf1c6aa5e3025d81896eba7d3f0858b37bdc7309 dir: /test/generic.myr/
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)) }