summaryrefslogtreecommitdiff
path: root/Zend/tests/bug38942.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug38942.phpt')
-rw-r--r--Zend/tests/bug38942.phpt18
1 files changed, 0 insertions, 18 deletions
diff --git a/Zend/tests/bug38942.phpt b/Zend/tests/bug38942.phpt
deleted file mode 100644
index d0335b1071..0000000000
--- a/Zend/tests/bug38942.phpt
+++ /dev/null
@@ -1,18 +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"));
-?>
---EXPECTF--
-Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; foo has a deprecated constructor in %s on line %d
-Array
-(
- [0] => foo
-)