mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 21:48:09 +02:00
16 lines
238 B
ObjectPascal
16 lines
238 B
ObjectPascal
{ %version=1.1 }
|
|
{ %fail }
|
|
uses
|
|
sysutils;
|
|
|
|
begin
|
|
// this should fail with a runtime error
|
|
try
|
|
raise ETestException.Create;
|
|
except
|
|
AcquireExceptionObject;
|
|
ReleaseExceptionObject;
|
|
ReleaseExceptionObject;
|
|
end;
|
|
end.
|