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