fiber-error-construct.phpt 272 B

1234567891011121314
  1. --TEST--
  2. FiberError cannot be constructed in user code
  3. --FILE--
  4. <?php
  5. try {
  6. new FiberError;
  7. } catch (Error $exception) {
  8. echo $exception->getMessage(), "\n";
  9. }
  10. ?>
  11. --EXPECT--
  12. The "FiberError" class is reserved for internal use and cannot be manually instantiated