mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 16:47:53 +02:00
20 lines
196 B
ObjectPascal
20 lines
196 B
ObjectPascal
{ %FAIL }
|
|
|
|
unit tw1316;
|
|
interface
|
|
|
|
type
|
|
searchrec=record
|
|
l : longint;
|
|
end;
|
|
|
|
operator [] (a,b:searchrec) r:boolean;
|
|
|
|
implementation
|
|
|
|
operator [] (a,b:searchrec) r:boolean;
|
|
begin
|
|
end;
|
|
|
|
end.
|