mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 01:41:56 +02:00
14 lines
182 B
ObjectPascal
14 lines
182 B
ObjectPascal
{ %version=1.1 }
|
|
{ %fail }
|
|
uses
|
|
sysutils;
|
|
|
|
begin
|
|
// this should fail with a runtime error
|
|
try
|
|
raise ETestException.Create;
|
|
except
|
|
ReleaseExceptionObject;
|
|
end;
|
|
end.
|