summaryrefslogtreecommitdiff
path: root/tests/tbs/tb0449.pp
blob: 2070079a8291adc8d8ec1b99f44670515e61a6d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ %RESULT=217 }

{$ifdef fpc}
{$mode objfpc}
{$endif}
uses SysUtils;

type
  EWbcError = class of Exception;

Begin
  raise EwbcError.create('Hello');
end.