mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
31 lines
335 B
ObjectPascal
31 lines
335 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tw39673;
|
|
|
|
{$ifdef fpc}
|
|
{$mode delphi}
|
|
{$else}
|
|
{$APPTYPE CONSOLE}
|
|
{$endif}
|
|
|
|
uses
|
|
Types,
|
|
Classes,
|
|
contnrs,
|
|
generics.collections;
|
|
|
|
Type tsomeclass =class
|
|
function readarray:TObjectList;
|
|
end;
|
|
|
|
{ tsomeclass }
|
|
|
|
function tsomeclass.readarray: TObjectList;
|
|
begin
|
|
result:=nil;
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|