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