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