ref: f16eddc8b5b4c20a4aef509d3b9f69ef83b49b4c dir: /test/genericcall.myr/
use std /* checks that generics can call non-generics. exits with 42. */ const f = { -> 42 } generic id = {a:@a -> f() } const main = { id("adsf") -> id(42) }