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