| Current Path : /hdd/hdd12/install/php/php-7.4.32/Zend/tests/ |
| Current File : //hdd/hdd12/install/php/php-7.4.32/Zend/tests/bug60444.phpt |
--TEST--
Bug #60444 (Segmentation fault with include & class extending)
--FILE--
<?php
class Foo {
public function __construct() {
eval("class Bar extends Foo {}");
Some::foo($this);
}
}
class Some {
public static function foo(Foo $foo) {
}
}
new Foo;
echo "done\n";
--EXPECT--
done