summaryrefslogtreecommitdiff
path: root/Zend/tests/bug43344_8.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug43344_8.phpt')
-rw-r--r--Zend/tests/bug43344_8.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/tests/bug43344_8.phpt b/Zend/tests/bug43344_8.phpt
index b1e6f61a54..b0c247c8e3 100644
--- a/Zend/tests/bug43344_8.phpt
+++ b/Zend/tests/bug43344_8.phpt
@@ -4,7 +4,7 @@ Bug #43344.8 (Wrong error message for undefined namespace constant)
<?php
namespace Foo;
function f($a=array(namespace\bar)) {
- return $a[0];
+ return $a[0];
}
echo f()."\n";
?>