You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
359 B

  1. --TEST--
  2. Bug #30922 (reflective functions crash PHP when interfaces extend themselves)
  3. --FILE--
  4. <?php
  5. interface RecurisiveFooFar extends RecurisiveFooFar {}
  6. class A implements RecurisiveFooFar {}
  7. $a = new A();
  8. var_dump($a instanceOf A);
  9. echo "ok\n";
  10. ?>
  11. --EXPECTF--
  12. Fatal error: Interface RecurisiveFooFar cannot implement itself in %sbug30922.php on line %d