fpc/tests/webtbs/tw36388.pp
marco fdb477df1e # revisions: 43566,43567,43568,43586,43629,43823
git-svn-id: branches/fixes_3_2@43941 -
2020-01-14 10:41:39 +00:00

17 lines
197 B
ObjectPascal

{ %NORUN }
{$mode objfpc}
program tw36388;
uses
SysUtils, FGL;
generic function CopyList<T: TFPSList> (source: T): T;
begin
// Internal error 200204175
result := T.Create;
end;
begin
end.