mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 22:08:11 +02:00
23 lines
301 B
ObjectPascal
23 lines
301 B
ObjectPascal
unit uw29859a;
|
|
|
|
{$mode delphi}
|
|
|
|
interface
|
|
|
|
type
|
|
TMyRecord<T> = record
|
|
public
|
|
FValue: T;
|
|
class operator Add(A,B: TMyRecord<T>): TMyRecord<T>;
|
|
end;
|
|
|
|
implementation
|
|
|
|
class operator TMyRecord<T>.Add(A,B: TMyRecord<T>): TMyRecord<T>;
|
|
begin
|
|
Result.FValue := A.FValue + B.FValue;
|
|
end;
|
|
|
|
end.
|
|
|