S09009

Error Code

S09009

Error Message

JIT: Inferring return type failed. The return value cannot be NULL. RefId: S09009

Probable Causes

This error occurs when the return value of a JIT function is NULL. For example:
@jit
def demo() {
	return
}
demo()

Solutions

Ensure that the JIT function does not return NULL.