ref: 0e2a8ea63cfc8b070335288ce97c87e4a7fa2548 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)) }