ref: 50c1c9eeaadb2d41ce4c5feadfc211ec75e03c1d 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)) }