mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-28 16:03:48 +02:00
21 lines
232 B
ObjectPascal
21 lines
232 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.3 2005-02-14 17:13:35 peter
|
|
* truncate log
|
|
|
|
}
|