ref: 9673e11f4a1c9d3376a74d444e7c2e21ad65ebf2 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)) }