summaryrefslogtreecommitdiff
path: root/Test/prover/usedot.bpl
diff options
context:
space:
mode:
Diffstat (limited to 'Test/prover/usedot.bpl')
-rw-r--r--Test/prover/usedot.bpl9
1 files changed, 9 insertions, 0 deletions
diff --git a/Test/prover/usedot.bpl b/Test/prover/usedot.bpl
new file mode 100644
index 00000000..5815236e
--- /dev/null
+++ b/Test/prover/usedot.bpl
@@ -0,0 +1,9 @@
+// RUN: %boogie -typeEncoding:m -proverLog:"%t.smt2" "%s"
+// RUN: %OutputCheck "%s" --file-to-check="%t.smt2"
+procedure foo() {
+ // . is an illegal starting character in SMT-LIBv2
+ // so test that we don't emit it as a symbol name.
+ // CHECK-L:(declare-fun q@.x () Int)
+ var .x:int;
+ assert .x == 0;
+}