fpc/tests/tbs/tb0449.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

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.