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