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