diff options
Diffstat (limited to 'Test/stratifiedinline/bar12.bpl')
-rw-r--r-- | Test/stratifiedinline/bar12.bpl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Test/stratifiedinline/bar12.bpl b/Test/stratifiedinline/bar12.bpl new file mode 100644 index 00000000..863f9dc0 --- /dev/null +++ b/Test/stratifiedinline/bar12.bpl @@ -0,0 +1,8 @@ +function {:inline} f(a:bool) : bool { true }
+
+procedure {:entrypoint} main()
+{
+ var x: int;
+ assume f(x >= 0);
+ assume x >= 0;
+}
|