Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / tests / webtbs / tw28475.pp
Size: Mime:
{ %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.