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