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