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 / tb0494.pp
Size: Mime:
{ the test checks only if the syntax is possible }
var
  ca : array[0..1000] of char;
  p1 : pchar;

begin
  p1:=nil;
  if (ca-p1)=0 then
    halt(1); 
  p1:=ca;
end.