summaryrefslogtreecommitdiff
path: root/Test/dafny4/CoqArt-InsertionSort.dfy
diff options
context:
space:
mode:
Diffstat (limited to 'Test/dafny4/CoqArt-InsertionSort.dfy')
-rw-r--r--Test/dafny4/CoqArt-InsertionSort.dfy1
1 files changed, 1 insertions, 0 deletions
diff --git a/Test/dafny4/CoqArt-InsertionSort.dfy b/Test/dafny4/CoqArt-InsertionSort.dfy
index efd01537..99e0f0b1 100644
--- a/Test/dafny4/CoqArt-InsertionSort.dfy
+++ b/Test/dafny4/CoqArt-InsertionSort.dfy
@@ -151,6 +151,7 @@ lemma existence_proof(l: List<int>)
{
match l {
case Nil =>
+ assert sorted(Nil);
case Cons(x, m) =>
existence_proof(m);
var m' :| equiv(m, m') && sorted(m');