From 4c4647bbd61883edee6f55d5dc37c9649d23af2e Mon Sep 17 00:00:00 2001 From: qunyanm Date: Thu, 7 Jan 2016 16:43:53 -0800 Subject: Fix issue 118. When iteratively computing bounds, treat RefBoundedPool typed bound as undetermined so that iteration will continue. --- Test/dafny4/Bug118.dfy | 12 ++++++++++++ Test/dafny4/Bug118.dfy.expect | 2 ++ 2 files changed, 14 insertions(+) create mode 100644 Test/dafny4/Bug118.dfy create mode 100644 Test/dafny4/Bug118.dfy.expect (limited to 'Test') diff --git a/Test/dafny4/Bug118.dfy b/Test/dafny4/Bug118.dfy new file mode 100644 index 00000000..1e2dddeb --- /dev/null +++ b/Test/dafny4/Bug118.dfy @@ -0,0 +1,12 @@ +// RUN: %dafny /compile:0 "%s" > "%t" +// RUN: %diff "%s.expect" "%t" + +class Foo { + ghost var Repr: set +} + +function SeqRepr(s:seq) : set + reads set b | b in s +{ + set o,b | b in s && b != null && o in b.Repr :: o // Works if you say "set b,o | ..." +} \ No newline at end of file diff --git a/Test/dafny4/Bug118.dfy.expect b/Test/dafny4/Bug118.dfy.expect new file mode 100644 index 00000000..c0c48e2b --- /dev/null +++ b/Test/dafny4/Bug118.dfy.expect @@ -0,0 +1,2 @@ + +Dafny program verifier finished with 1 verified, 0 errors -- cgit v1.2.3