mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-28 18:53:40 +02:00
24 lines
307 B
ObjectPascal
24 lines
307 B
ObjectPascal
{ %RESULT=217 }
|
|
|
|
{$ifdef fpc}
|
|
{$mode objfpc}
|
|
{$endif}
|
|
uses SysUtils;
|
|
|
|
type
|
|
EWbcError = class of Exception;
|
|
|
|
Begin
|
|
raise EwbcError.create('Hello');
|
|
end.
|
|
|
|
{
|
|
$Log$
|
|
Revision 1.2 2003-10-31 16:15:26 peter
|
|
* test exitcode 217
|
|
|
|
Revision 1.1 2003/02/02 13:46:06 carl
|
|
+ exception testing
|
|
|
|
}
|