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