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