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