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