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 / tb0200.pp
Size: Mime:
{%NORUN}
{%FAIL}
program tb0200;

{$H-}

{TP rejects this code both with range checking off and on. However,
 we allow indexing arrays out of bounds with range checks off, so
 we best reject this then only with range checking on.}

{$Q+,R+}

var a:string;
    c:char;

begin
  a:='';
  c:=a[257];
end.