mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
ea297654f4
* Zend/*: fix a bunch of typos * Zend/tests/try/try_catch_finally_005.phpt: update string length
17 lines
388 B
PHP
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
|