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