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