Browse Source

* test fixed

peter 21 years ago
parent
commit
9806510b53
1 changed files with 4 additions and 2 deletions
  1. 4 2
      tests/webtbf/tw3375.pp

+ 4 - 2
tests/webtbf/tw3375.pp

@@ -17,7 +17,9 @@ var
 
 
 begin
 begin
   w := 0;
   w := 0;
-  p := pchar(w); // should fail, because sizeof(w)<>sizeof(p) on this platform.
-  //a := T4Bytes(w); // should fail, and it does
+  // The next line should compile, delphi compatible
+  p := pchar(w);
+  // should fail, and it does
+  a := T4Bytes(w);
 end.
 end.