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