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