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