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