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.0.0 / tests / tbf / tb0049.pp
Size: Mime:
{ %FAIL }
{ Old file: tbf0246.pp }
{ const para can be changed without error              OK 0.99.13 (PFV) }

type
  tref=record
    ofs : longint;
  end;

procedure p(const ref:tref);
begin
  with ref do
   ofs:=ofs+1;   { This should issue an error, because ref is const ! }
end;

begin
end.