summaryrefslogtreecommitdiff
path: root/Test/aitest1/Linear4.bpl
diff options
context:
space:
mode:
Diffstat (limited to 'Test/aitest1/Linear4.bpl')
-rw-r--r--Test/aitest1/Linear4.bpl4
1 files changed, 3 insertions, 1 deletions
diff --git a/Test/aitest1/Linear4.bpl b/Test/aitest1/Linear4.bpl
index c8c4605c..2207debe 100644
--- a/Test/aitest1/Linear4.bpl
+++ b/Test/aitest1/Linear4.bpl
@@ -8,8 +8,10 @@ procedure p()
{
A:
assume x < y;
- goto B;
+ goto B, C;
B:
x := x*x;
return;
+ C:
+ return;
}