ref: 38fb09f0003bad6ce33fd0af769c68d0dd88bc36 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)) }