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