Method is defined with ReturnType value but has no QUIT or RETURN command.

Noncompliant Code Example

Following code will compile, but on runtime the foo method will fail with "COMMAND error" message.

ClassMethod foo() As %String
{
}

ClassMethod bar()
{
    #Dim str As %String = ..foo()  // Function must return a value
}