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