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