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