ref: 731dd8851a19c11f91d01bdc8c469c77d653a4ea 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)) }