summaryrefslogtreecommitdiff
path: root/Test/irondafny0/xrefine3.dfy
diff options
context:
space:
mode:
Diffstat (limited to 'Test/irondafny0/xrefine3.dfy')
-rw-r--r--Test/irondafny0/xrefine3.dfy6
1 files changed, 3 insertions, 3 deletions
diff --git a/Test/irondafny0/xrefine3.dfy b/Test/irondafny0/xrefine3.dfy
index 44add7cc..86dbd957 100644
--- a/Test/irondafny0/xrefine3.dfy
+++ b/Test/irondafny0/xrefine3.dfy
@@ -12,7 +12,7 @@ abstract module AlphaSpec {
abstract module BetaSpec {
type Beta
- import A as AlphaSpec
+ import A : AlphaSpec
predicate IsValid(b:Beta)
@@ -49,8 +49,8 @@ module BetaImpl exclusively refines BetaSpec {
}
abstract module MainSpec {
- import A as AlphaSpec
- import B as BetaSpec
+ import A : AlphaSpec
+ import B : BetaSpec
method Main()
{