1
0
mirror of https://github.com/php/php-src.git synced 2026-04-22 23:48:14 +02:00
Files
archived-php-src/Zend/tests/bug43344_1.phpt
T
2020-02-03 22:52:20 +01:00

46 lines
735 B
PHP

--TEST--
Bug #43344.1 (Wrong error message for undefined namespace constant)
--FILE--
<?php
namespace Foo;
use Error;
function f1($a=bar) {
return $a;
}
function f2($a=array(bar)) {
return $a[0];
}
function f3($a=array(bar=>0)) {
reset($a);
return key($a);
}
try {
echo bar."\n";
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
try {
echo f1()."\n";
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
try {
echo f2()."\n";
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
try {
echo f3()."\n";
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
Undefined constant 'Foo\bar'
Undefined constant 'Foo\bar'
Undefined constant 'Foo\bar'
Undefined constant 'Foo\bar'