php-src/Zend/tests/bug38942.phpt
2012-10-10 10:27:49 +08:00

18 lines
215 B
PHP

--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
)