mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:38:14 +02:00
20 lines
239 B
ObjectPascal
20 lines
239 B
ObjectPascal
{ %fail}
|
|
program toperator10;
|
|
|
|
{$mode delphi}
|
|
|
|
type
|
|
TFoo = record
|
|
F: Integer;
|
|
end;
|
|
|
|
// don't allow class operator declaration outside the class
|
|
class operator Add(A, B: TFoo): TFoo;
|
|
begin
|
|
Result.F := A.F + B.F;
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|