summaryrefslogtreecommitdiff
path: root/Test/dafny4/Bug136.dfy
diff options
context:
space:
mode:
authorGravatar qunyanm <unknown>2016-02-26 09:56:59 -0800
committerGravatar qunyanm <unknown>2016-02-26 09:56:59 -0800
commit13a88d7263c02590f5be9bb9944c0ab43b76bccc (patch)
treeb9ffbbaeee4dd57f70841cccdd4b8b162582b594 /Test/dafny4/Bug136.dfy
parentd3063bebb513c36edcfd035b62308a917e4deecc (diff)
Fix issue 136. Less aggressive Lit wrap for assert/assume.
Diffstat (limited to 'Test/dafny4/Bug136.dfy')
-rw-r--r--Test/dafny4/Bug136.dfy12
1 files changed, 12 insertions, 0 deletions
diff --git a/Test/dafny4/Bug136.dfy b/Test/dafny4/Bug136.dfy
new file mode 100644
index 00000000..5f3cde69
--- /dev/null
+++ b/Test/dafny4/Bug136.dfy
@@ -0,0 +1,12 @@
+// RUN: %dafny /compile:0 /print:- "%s" > "%t"
+// RUN: %diff "%s.expect" "%t"
+
+method test()
+{
+ assume false;
+ assert true;
+}
+
+
+
+