mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
28 lines
360 B
PHP
28 lines
360 B
PHP
--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
|