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