summaryrefslogtreecommitdiff
path: root/Test/og/parallel5.bpl
diff options
context:
space:
mode:
Diffstat (limited to 'Test/og/parallel5.bpl')
-rw-r--r--Test/og/parallel5.bpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Test/og/parallel5.bpl b/Test/og/parallel5.bpl
index eda8ef44..34bb82a9 100644
--- a/Test/og/parallel5.bpl
+++ b/Test/og/parallel5.bpl
@@ -8,8 +8,8 @@ procedure {:entrypoint} {:yields} main()
var {:linear "tid"} j: int;
call i := Allocate();
call j := Allocate();
- call i := t(i) | j := Yield(j);
- call i := u(i) | j := u(j);
+ par i := t(i) | j := Yield(j);
+ par i := u(i) | j := u(j);
}
procedure {:yields} {:stable} t({:linear "tid"} i': int) returns ({:linear "tid"} i: int)