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