範囲が重複している PERFORM を検出した場合、このエラー メッセージでは重複の開始地点および重複する PERFORM の数が示されます。
重複が発生する箇所の詳細については、「COBCH1664 PERFORM 範囲: <プロシージャ名 1> から <プロシージャ名 2>」を参照してください。
$set ilshowperformoverlap
...
perform a thru c.
perform c thru f.
perform f.
goback.
*> errors are displayed as follows:
a section.
display "Running section a.". *> COBCH1663E Overlapping perform range: 3 entries
*> COBCH1664E perform range: a thru c
b section.
display "Running section b.".
c section. *> COBCH1664E perform range: c thru f
display "Running section c.".
d section.
display "Running section d.".
e section.
display "Running section e.".
f section. *> COBCH1664E perform range: f thru f
display "Running section f.".