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