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