texception8.pp 182 B

12345678910111213
  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. ReleaseExceptionObject;
  11. end;
  12. end.