mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 18:10:29 +02:00
15 lines
237 B
ObjectPascal
15 lines
237 B
ObjectPascal
{ %fail }
|
|
{$mode objfpc}
|
|
|
|
program test;
|
|
uses
|
|
FGL;
|
|
|
|
// Type identifier expected
|
|
// Internal error 2019112401
|
|
generic function CopyList<T>(source: specialize FGL.TFPGObjectList<T>): specialize FGL.TFPGObjectList<T>;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end. |