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