php-src/Zend/tests/bug30922.phpt
DanielEScherzer ea297654f4
Zend/*: fix a bunch of typos (GH-16017)
* Zend/*: fix a bunch of typos

* Zend/tests/try/try_catch_finally_005.phpt: update string length
2024-09-24 10:55:21 +02:00

17 lines
388 B
PHP

--TEST--
Bug #30922 (reflective functions crash PHP when interfaces extend themselves)
--FILE--
<?php
interface RecursiveFooFar extends RecursiveFooFar {}
class A implements RecursiveFooFar {}
$a = new A();
var_dump($a instanceOf A);
echo "ok\n";
?>
--EXPECTF--
Fatal error: Uncaught Error: Interface "RecursiveFooFar" not found in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d