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