mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 19:08:18 +02:00
12 lines
182 B
ObjectPascal
12 lines
182 B
ObjectPascal
{ Old file: tbf0343.pp }
|
|
|
|
{$mode delphi}
|
|
type
|
|
TListEntry = record
|
|
Next: ^TListEntry; // delphi and fpc allows this now
|
|
Data: Integer;
|
|
end;
|
|
|
|
begin
|
|
end.
|