fpc/tests/webtbs/tw29792.pp
svenbarth e58488dc3e Fix for Mantis #29792.
htypechk.pas, tcallcandidates:
  * create_candidate_list: check the correct tableoptions for sto_has_overload flag

+ added test

git-svn-id: trunk@33211 -
2016-03-09 20:45:26 +00:00

34 lines
414 B
ObjectPascal

unit tw29792;
{$mode delphi}
interface
type
{ TMyRecord }
TMyRecord<T> = record
class operator Add(A,B: TMyRecord<T>): TMyRecord<T>;
end;
implementation
{ TMyRecord }
class operator TMyRecord<T>.Add(A, B: TMyRecord<T>): TMyRecord<T>;
begin
// add implementation
end;
procedure TestIfCompiles;
type
TInteger = TMyRecord<Integer>;
var
N1, N2, N3: TInteger;
begin
N1 := N2 + N3;
end;
end.