| Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/ |
| Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/bug69427.phpt |
--TEST--
Bug #69427 (Segfault on magic method __call of private method in superclass)
--FILE--
<?php
class SubClass extends BaseClass
{
}
abstract class BaseClass
{
public function __call($name, $arguments)
{
return $this->$name();
}
private function foobar()
{
return 'okey';
}
}
$test = new SubClass();
echo $test->foobar();
?>
--EXPECT--
okey