ref: 44e5ed3ebbb9c3a8e5e5d809e0f5a6991c4b9570 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") std.exit(id(42)) }