fpc/tests/webtbf/tw39514.pp
2022-08-28 21:44:33 +02:00

21 lines
280 B
ObjectPascal

{ %fail }
{$mode objfpc} {$longstrings on}
procedure ThrowException; noreturn;
begin
raise TObject.Create;
end;
procedure DoSomethingWithString;
begin
writeln(Copy('hey', 1, 2));
ThrowException;
end;
begin
try
DoSomethingWithString;
except
writeln('catch');
end;
end.