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