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