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.2.0 / tests / webtbs / tw33818.pp
Size: Mime:
{ %OPT=-Seh -vh }
{ %norun }
{$mode objfpc}

program Project1;

uses
 SysUtils;

procedure RaiseException(AReturnAddress : CodePointer);
begin
 raise Exception.Create('message') at AReturnAddress;
end;

procedure RaiseException(AReturnAddress : CodePointer;AFrame : Pointer);
begin
 raise Exception.Create('message') at AReturnAddress,AFrame;
end;

begin
 RaiseException(CodePointer(10));
 RaiseException(CodePointer(10),Pointer(1234));
end.