From 2be514ca20e1478b6df02ef2b4c2725c319ac934 Mon Sep 17 00:00:00 2001 From: qunyanm Date: Tue, 2 Feb 2016 12:40:07 -0800 Subject: Mark old "import A as B" syntax as deprecated. The new syntax is "import A : B" --- Test/irondafny0/xrefine2.dfy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Test/irondafny0/xrefine2.dfy') diff --git a/Test/irondafny0/xrefine2.dfy b/Test/irondafny0/xrefine2.dfy index 1de4e201..9c33391b 100644 --- a/Test/irondafny0/xrefine2.dfy +++ b/Test/irondafny0/xrefine2.dfy @@ -9,7 +9,7 @@ abstract module ProtocolSpec { abstract module HostSpec { type HostT - import P as ProtocolSpec + import P : ProtocolSpec function method foo(h:HostT) : P.ProtoT } @@ -42,8 +42,8 @@ module HostImpl exclusively refines HostSpec { } abstract module MainSpec { - import HI as HostSpec - import PI as ProtocolSpec + import HI : HostSpec + import PI : ProtocolSpec method Test(h1:HI.HostT, h2:HI.HostT) requires HI.foo(h1) == HI.foo(h2); -- cgit v1.2.3