summaryrefslogtreecommitdiff
path: root/Test
diff options
context:
space:
mode:
authorGravatar qunyanm <unknown>2016-02-05 18:09:23 -0800
committerGravatar qunyanm <unknown>2016-02-05 18:09:23 -0800
commit6ea62e3009f326ca553521c169dec67a262a7217 (patch)
treefebfe0ce86d4760d1ef07bf851f7bfeb681fc2ac /Test
parent74d1631a4724739dbb897c74713f54c4d060e781 (diff)
Last checkin checked in the wrong version of bug125.dfy. The failure part of
the test was moved into test\dafny0\modules0.dfy so that bug125.dfy can be verified that it was resolved to the correct types.
Diffstat (limited to 'Test')
-rw-r--r--Test/dafny4/Bug125.dfy24
1 files changed, 0 insertions, 24 deletions
diff --git a/Test/dafny4/Bug125.dfy b/Test/dafny4/Bug125.dfy
index 916dd3f8..5dbdea6f 100644
--- a/Test/dafny4/Bug125.dfy
+++ b/Test/dafny4/Bug125.dfy
@@ -56,27 +56,3 @@ module S refines R {
assert G.f(20); // should be LibA.G.f
}
}
-
-
-module Library {
-
- class T { }
-
-}
-
-
-
-module A {
-
- import opened Library
- class T {
- }
-}
-
-
-
-module B refines A {
-
- datatype T = MakeT(int) // illegal for the same reason as above, but Dafny fails to issue an error
-
-}