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