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