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