summaryrefslogtreecommitdiff
path: root/Zend/tests/bug30922.phpt
blob: 24d79171be217695c7331599007a82fe9aa7e755 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Bug #30922 (reflective functions crash PHP when interfaces extend themselves)
--FILE--
<?php
interface RecurisiveFooFar extends RecurisiveFooFar {}
class A implements RecurisiveFooFar {}

$a = new A();
var_dump($a instanceOf A);
echo "ok\n";
?>
--EXPECTF--
Fatal error: Interface RecurisiveFooFar cannot not implement itself in %sbug30922.php on line %d