mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
17 lines
199 B
ObjectPascal
17 lines
199 B
ObjectPascal
{ %fail }
|
|
|
|
uses
|
|
Classes;
|
|
|
|
type
|
|
TForm1 = class
|
|
private
|
|
{ private declarations }
|
|
fScript:TStringlist.Create; <--- erroneous decl.
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
begin
|
|
end.
|