1
0
mirror of https://github.com/php/php-src.git synced 2026-04-05 23:23:03 +02:00
Files
archived-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
)