mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 06:08:22 +02:00
14 lines
156 B
ObjectPascal
14 lines
156 B
ObjectPascal
{ %RESULT=217 }
|
|
|
|
{$ifdef fpc}
|
|
{$mode objfpc}
|
|
{$endif}
|
|
uses SysUtils;
|
|
|
|
type
|
|
EWbcError = class of Exception;
|
|
|
|
Begin
|
|
raise EwbcError.create('Hello');
|
|
end.
|