summaryrefslogtreecommitdiff
path: root/Zend/tests/bug62956.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug62956.phpt')
-rw-r--r--Zend/tests/bug62956.phpt20
1 files changed, 20 insertions, 0 deletions
diff --git a/Zend/tests/bug62956.phpt b/Zend/tests/bug62956.phpt
new file mode 100644
index 0000000000..c8694d5bea
--- /dev/null
+++ b/Zend/tests/bug62956.phpt
@@ -0,0 +1,20 @@
+--TEST--
+Bug #62956: "incompatible" signatures for private methods should not cause E_STRICT
+--FILE--
+<?php
+class Base
+{
+ private function test()
+ {}
+}
+
+class Extension extends Base
+{
+ private function test($arg)
+ {}
+}
+
+?>
+==DONE==
+--EXPECT--
+==DONE==