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