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