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