texception9.pp 238 B

123456789101112131415
  1. { %version=1.1 }
  2. { %fail }
  3. uses
  4. sysutils;
  5. begin
  6. // this should fail with a runtime error
  7. try
  8. raise ETestException.Create;
  9. except
  10. AcquireExceptionObject;
  11. ReleaseExceptionObject;
  12. ReleaseExceptionObject;
  13. end;
  14. end.