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