fpc/tests/tbf/tb0070.pp
2000-12-03 21:50:07 +00:00

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.