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