Fix nesting.occ so it has a valid TLP signature.
This commit is contained in:
parent
0106e6bbb7
commit
04da66531f
|
@ -1,15 +1,18 @@
|
|||
PROC outer (CHAN OF INT channel)
|
||||
VAL INT constant IS 42:
|
||||
INT count:
|
||||
PROC inner1 ()
|
||||
count := count + constant
|
||||
PROC p ()
|
||||
PROC outer (CHAN OF INT channel)
|
||||
VAL INT constant IS 42:
|
||||
INT count:
|
||||
PROC inner1 ()
|
||||
count := count + constant
|
||||
:
|
||||
PROC inner2 (VAL INT count)
|
||||
SEQ i = 0 FOR constant
|
||||
channel ! count + i
|
||||
:
|
||||
SEQ
|
||||
count := 0
|
||||
inner1 ()
|
||||
inner2 (count)
|
||||
:
|
||||
PROC inner2 (VAL INT count)
|
||||
SEQ i = 0 FOR constant
|
||||
channel ! count + i
|
||||
:
|
||||
SEQ
|
||||
count := 0
|
||||
inner1 ()
|
||||
inner2 (count)
|
||||
SKIP
|
||||
:
|
||||
|
|
Loading…
Reference in New Issue
Block a user