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