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