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