summaryrefslogtreecommitdiff
path: root/Zend/tests/bug38942.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug38942.phpt')
-rwxr-xr-xZend/tests/bug38942.phpt17
1 files changed, 0 insertions, 17 deletions
diff --git a/Zend/tests/bug38942.phpt b/Zend/tests/bug38942.phpt
deleted file mode 100755
index 85bb56d200..0000000000
--- a/Zend/tests/bug38942.phpt
+++ /dev/null
@@ -1,17 +0,0 @@
---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
-)