mirror of
https://github.com/php/php-src.git
synced 2025-01-07 19:44:02 +08:00
18 lines
215 B
PHP
Executable File
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
|
|
)
|