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