ref: 05d7bc89b7b144997e91c764c9aa0bbdddc0dcac 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)) }