mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:18:30 +02:00
27 lines
351 B
ObjectPascal
27 lines
351 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tb0680;
|
|
|
|
{$mode objfpc}{$H+}
|
|
{$modeswitch advancedrecords}
|
|
|
|
type
|
|
TTest = record
|
|
class operator + (aLeft, aRight: TTest): TTest;
|
|
function Plus(aLeft, aRight: TTest): TTest;
|
|
end;
|
|
|
|
class operator TTest.+(aLeft, aRight: TTest): TTest;
|
|
begin
|
|
|
|
end;
|
|
|
|
function TTest.Plus(aLeft, aRight: TTest): TTest;
|
|
begin
|
|
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|