Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php5/php-5.6.6/Zend/tests/
Upload File :
Current File : //hdd/hdd21/main/php5/php-5.6.6/Zend/tests/bug38942.phpt

--TEST--
Bug #38942 (Double old-style-ctor inheritance)
--FILE--
<?php
class foo {
    public function foo() {}
}

class bar extends foo {
}
print_r(get_class_methods("bar"));
?>
--EXPECT--
Array
(
    [0] => foo
)