Jump statements (``BREAK``, ``CONTINUE``, ``RETURN``, ``GOTO``, and ``THROW``), move control flow out of the current code block. So any statements that come after a jump are dead code.
== Noncompliant Code Example
----
CREATE PROCEDURE
AS
BEGIN
...
RETURN -- Noncompliant, remove following statements
PRINT 'End'
END
== Compliant Solution
RETURN
include::../see.adoc[]