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