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