* fixed test, using := operator as type cast is now much stricter

git-svn-id: trunk@1386 -
This commit is contained in:
florian 2005-10-15 17:50:18 +00:00
parent 71b90d4d00
commit c7cfe4976e

View File

@ -9,6 +9,14 @@ Type vector=array[1..2] of double;
end;
operator := (x:shortint) r:pair;
var i:longint;
Begin
r.v1:=x;
for i:=1 to 2 do r.v2[i]:=0;
End;
operator := (x:double) r:pair;
var i:longint;
Begin