Browse Source

* added comment what the bug is

peter 20 years ago
parent
commit
faf7082d45
1 changed files with 3 additions and 2 deletions
  1. 3 2
      tests/webtbs/tw3063.pp

+ 3 - 2
tests/webtbs/tw3063.pp

@@ -3,14 +3,15 @@
 { e-mail: [email protected] }
 program scope;
 
-{$mode delphi}
+{$ifdef fpc}{$mode delphi}{$endif}
 
-uses classes;
+uses Classes;
 
 var
   error: string;
 begin
   with TStringList.Create do try
+    { TStringList.Error is protected and is not visible }
     error := 'some text';
     WriteLn( error );
   finally