summaryrefslogtreecommitdiff
path: root/Test/dafny0/AdvancedLHS.dfy
diff options
context:
space:
mode:
authorGravatar Rustan Leino <unknown>2013-03-27 13:51:16 -0700
committerGravatar Rustan Leino <unknown>2013-03-27 13:51:16 -0700
commit5296b17758c3e27bf551e9a322323a37983d7abb (patch)
treea7c818eedf1608eec0e59ff73ac3ee8356939751 /Test/dafny0/AdvancedLHS.dfy
parent5f05e3a1c194dcda48115d7b6a1c5777bd2d5287 (diff)
The "choose" statement, hacky and specialized as it was, is now gone. Use the assign-such-that statement instead. For example: x :| x in S;
Diffstat (limited to 'Test/dafny0/AdvancedLHS.dfy')
-rw-r--r--Test/dafny0/AdvancedLHS.dfy1
1 files changed, 0 insertions, 1 deletions
diff --git a/Test/dafny0/AdvancedLHS.dfy b/Test/dafny0/AdvancedLHS.dfy
index f1fc7d48..51e9b769 100644
--- a/Test/dafny0/AdvancedLHS.dfy
+++ b/Test/dafny0/AdvancedLHS.dfy
@@ -8,7 +8,6 @@ class C {
x := new C;
x := new C.Init();
x := *;
- x := choose S;
// test evaluation order
var c := x;