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