summaryrefslogtreecommitdiff
path: root/Zend/tests/use_function/no_global_fallback2.phpt
blob: cf6026f56a924e8ce4083356e2e1a17b10bbce34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--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