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