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