summaryrefslogtreecommitdiff
path: root/Zend/tests/use_const/no_global_fallback.phpt
blob: a128f353edb6d4dbe6cf5035eacfac4ffd1c405b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
non-existent imported constants should not be looked up in the global table
--FILE--
<?php

require 'includes/global_baz.php';

use const foo\bar\baz;
var_dump(baz);

?>
--EXPECTF--
Notice: Use of undefined constant baz - assumed 'baz' in %s on line %d
string(3) "baz"