fpc/tests/webtbs/tw39673.pp

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.