fun generic_add(x, y) { x + y } fun test() { generic_add(10, 10) } // @ignore // @no-errors // @eval: 20