mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
c9f27ee422
TypeException stays as-is for now because it uses messages that are incompatible with the way exception messages are displayed. closure_038.phpt and a few others now show that we're generating too many exceptions for compound operations on undefined properties -- this needs to be fixed in a followup.
22 lines
379 B
PHP
22 lines
379 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 exception 'EngineException' with message 'Call to undefined function bar\test()' in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|