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