* added comment what the bug is

This commit is contained in:
peter 2004-12-15 15:46:59 +00:00
parent 9df85a7290
commit faf7082d45

View File

@ -3,14 +3,15 @@
{ e-mail: werner.bochtler@zkrd.de }
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