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