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