mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
19 lines
198 B
ObjectPascal
19 lines
198 B
ObjectPascal
{ %FAIL }
|
|
|
|
unit tw28753;
|
|
|
|
{$mode delphi}
|
|
|
|
interface
|
|
|
|
type
|
|
TList<T> = class(TObject);
|
|
|
|
implementation
|
|
|
|
procedure ObjectListToJson(Value: TList);
|
|
begin // Error: Internal error 200301231
|
|
end;
|
|
|
|
end.
|