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 / tb0173.pp
Size: Mime:
{ %fail }

{ use a structured type used to keep the namings clean }
type
   tLoopParm =
   record
      Min,
      Max,
      Cur : word;
   end {tLoopParm};
var
   One,
   Two,
   Three,
   Four : tLoopParm;
begin
   One.Min := 42;
   One.Max := 42;
   for One.Cur := One.Min to One.Max do
   begin
   end {for One};
end {Bug}.