1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 08:28:26 +02:00
Files
2020-02-03 22:52:20 +01:00

22 lines
361 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: Uncaught Error: Call to undefined function bar\test() in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d