fpc/tests/webtbs/tw28475.pp
Jonas Maebe fa1ac2515e * don't look for overloaded operators in case of internally generated
type conversions (mantis #28375)

git-svn-id: trunk@31191 -
2015-07-03 20:19:48 +00:00

25 lines
338 B
ObjectPascal

{ %opt=-g-t }
program trashtest;
{$MODE OBJFPC}
type
TTestRec = record
Field1 : Int64;
end;
operator := (i: TTestRec) fR: Int64;
begin
fR := i.Field1;
end;
function TestFunc:TTestRec;
begin //error reported here
TestFunc.Field1 := 1;
end;
begin
WriteLn(TestFunc.Field1);
end.