summaryrefslogtreecommitdiff
path: root/Zend/tests/bug67436/b.inc
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug67436/b.inc')
-rw-r--r--Zend/tests/bug67436/b.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/Zend/tests/bug67436/b.inc b/Zend/tests/bug67436/b.inc
index 793a1394d6..bb2521f61f 100644
--- a/Zend/tests/bug67436/b.inc
+++ b/Zend/tests/bug67436/b.inc
@@ -1,7 +1,9 @@
<?php
class b extends a {
- public function test() {
+ private function __invoke() {}
+
+ public function test($arg = c::TESTCONSTANT) {
echo __METHOD__ . "()\n";
parent::test();
}