summaryrefslogtreecommitdiff
path: root/Zend/tests/bug43344_5.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug43344_5.phpt')
-rw-r--r--Zend/tests/bug43344_5.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/bug43344_5.phpt b/Zend/tests/bug43344_5.phpt
index 8cc333fd31..5ca2144438 100644
--- a/Zend/tests/bug43344_5.phpt
+++ b/Zend/tests/bug43344_5.phpt
@@ -4,8 +4,8 @@ Bug #43344.5 (Wrong error message for undefined namespace constant)
<?php
namespace Foo;
function f($a=array(Foo::bar=>0)) {
- reset($a);
- return key($a);
+ reset($a);
+ return key($a);
}
echo f()."\n";
?>