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