summaryrefslogtreecommitdiff
path: root/Test/test0/WhereParsing0.bpl
diff options
context:
space:
mode:
authorGravatar Unknown <leino@LEINO6.redmond.corp.microsoft.com>2013-01-07 19:41:58 -0800
committerGravatar Unknown <leino@LEINO6.redmond.corp.microsoft.com>2013-01-07 19:41:58 -0800
commit2219ef06a1e87125273a9fa2dc24b92a388ec4de (patch)
tree7fcdff5bfccd8671e045af5e722fdb0a854b6012 /Test/test0/WhereParsing0.bpl
parent4e5d28feec671e5e2493f9ecc89fc5e14018d017 (diff)
Allow attributes on procedure formals, function formals, and bound variables
Diffstat (limited to 'Test/test0/WhereParsing0.bpl')
-rw-r--r--Test/test0/WhereParsing0.bpl4
1 files changed, 4 insertions, 0 deletions
diff --git a/Test/test0/WhereParsing0.bpl b/Test/test0/WhereParsing0.bpl
index 84f92741..f99dc1ab 100644
--- a/Test/test0/WhereParsing0.bpl
+++ b/Test/test0/WhereParsing0.bpl
@@ -26,3 +26,7 @@ procedure Q(x: int where x > 0) returns (y: int where y < 0)
y := b;
return;
}
+
+axiom (forall yu: bool, {:myAttr} x: int :: x < 100);
+axiom (forall {:myAttr} x: int :: x < 100);
+axiom (forall <T> {:myAttr} x: T :: x == x);