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 / tbs / ub0060.pp
Size: Mime:
{ Old file: tbs0067.pp }
{  Shows incorrect symbol resolution when using uses in implementation More info can be found in file tbs0067b.pp. }

unit ub0060;

interface

type
  tlong=record
    a : longint;
  end;

procedure p(var t:tlong);

implementation

procedure p(var t:tlong);
begin
end;

end.