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