mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:28:14 +02:00
14 lines
192 B
ObjectPascal
14 lines
192 B
ObjectPascal
{ %FAIL }
|
|
{ Old file: tbf0343.pp }
|
|
{ }
|
|
|
|
{$mode delphi}
|
|
type
|
|
TListEntry = record
|
|
Next: ^TListEntry; (*<-- Error message here*)
|
|
Data: Integer;
|
|
end;
|
|
|
|
begin
|
|
end.
|