1
0
mirror of https://github.com/php/php-src.git synced 2026-04-05 07:02:33 +02:00
Files
archived-php-src/Zend/tests/use_function/no_global_fallback2.phpt
2013-08-30 11:53:57 -04:00

19 lines
286 B
PHP

--TEST--
non-existent imported functions should not be looked up in the global table
--FILE--
<?php
namespace {
function test() {
echo "NO!";
}
}
namespace foo {
use function bar\test;
test();
}
?>
--EXPECTF--
Fatal error: Call to undefined function bar\test() in %s on line %d