summaryrefslogtreecommitdiff
path: root/Test/dafny0/Modules1.dfy
diff options
context:
space:
mode:
authorGravatar Jason Koenig <unknown>2012-07-30 12:54:07 -0700
committerGravatar Jason Koenig <unknown>2012-07-30 12:54:07 -0700
commit096908b4bd4be630d7adf7448dea7eeb03e83d47 (patch)
tree84e8339ce6674338a07d44cd150fd18f5f715452 /Test/dafny0/Modules1.dfy
parent07cc86c1de92e885393058a24e1cbbb9301c0715 (diff)
Dafny: updated test suite to new syntax
Diffstat (limited to 'Test/dafny0/Modules1.dfy')
-rw-r--r--Test/dafny0/Modules1.dfy6
1 files changed, 3 insertions, 3 deletions
diff --git a/Test/dafny0/Modules1.dfy b/Test/dafny0/Modules1.dfy
index 6fd8560e..1f47f3b1 100644
--- a/Test/dafny0/Modules1.dfy
+++ b/Test/dafny0/Modules1.dfy
@@ -1,5 +1,5 @@
module A {
- module B = Babble;
+ import B = Babble;
class X {
function Fx(z: B.Z): int
requires z != null;
@@ -80,7 +80,7 @@ module A_Visibility {
}
module B_Visibility {
- module A = A_Visibility;
+ import A = A_Visibility;
method Main() {
var y;
if (A.C.P(y)) {
@@ -102,7 +102,7 @@ module Q_Imp {
}
module Q_M {
- module Q = Q_Imp;
+ import Q = Q_Imp;
method MyMethod(root: Q.Node, S: set<Q.Node>)
requires root in S;
{