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