The single edge-case that makes the Call keyword mandatory should trigger a warning:
Sub DoSomething()
Test: DoSomethingElse 'Test is parsed as a line label by VBA and RD
End Sub
Sub Test() ' procedure is in-scope for DoSomething but will not be called
End Sub