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