--TEST-- Bug #69427 (Segfault on magic method __call of private method in superclass) --FILE-- $name(); } private function foobar() { return 'okey'; } } $test = new SubClass(); echo $test->foobar(); ?> --EXPECT-- okey