summaryrefslogtreecommitdiff
path: root/Test/dafny0/ModulesCycle.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/ModulesCycle.dfy
parent07cc86c1de92e885393058a24e1cbbb9301c0715 (diff)
Dafny: updated test suite to new syntax
Diffstat (limited to 'Test/dafny0/ModulesCycle.dfy')
-rw-r--r--Test/dafny0/ModulesCycle.dfy6
1 files changed, 3 insertions, 3 deletions
diff --git a/Test/dafny0/ModulesCycle.dfy b/Test/dafny0/ModulesCycle.dfy
index 15cad8e8..72b7e6fb 100644
--- a/Test/dafny0/ModulesCycle.dfy
+++ b/Test/dafny0/ModulesCycle.dfy
@@ -1,12 +1,12 @@
module V {
- module t = T; // error: T is not visible (and isn't even a module)
+ import t = T; // error: T is not visible (and isn't even a module)
}
module A {
- module B = C;
+ import B = C;
}
module C {
- module D = A;
+ import D = A;
} \ No newline at end of file