Browse Source

* fixed test

florian 21 years ago
parent
commit
e27a8d871f
1 changed files with 3 additions and 3 deletions
  1. 3 3
      tests/tbs/tb0226.pp

+ 3 - 3
tests/tbs/tb0226.pp

@@ -16,7 +16,7 @@ type
 
 constructor a.create;
 begin
-    c := @e;
+    c := e;
 end;
 
 destructor a.destroy;
@@ -26,13 +26,13 @@ end;
 procedure a.e;
 begin
     Writeln('E');
-    c := @f;
+    c := f;
 end;
 
 procedure a.f;
 begin
     Writeln('F');
-    c := @e;
+    c := e;
 end;
 
 var