1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 10:12:18 +01:00
Files
archived-php-src/Zend/tests/bug38942.phpt
2006-09-26 07:55:21 +00:00

18 lines
215 B
PHP
Executable File

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