1
0
mirror of https://github.com/php/php-src.git synced 2026-04-26 09:28:21 +02:00
Files
archived-php-src/Zend/tests/use_const/no_global_fallback.phpt
T
2020-07-10 21:05:28 +02:00

17 lines
311 B
PHP

--TEST--
non-existent imported constants should not be looked up in the global table
--FILE--
<?php
require 'includes/global_baz.inc';
use const foo\bar\baz;
var_dump(baz);
?>
--EXPECTF--
Fatal error: Uncaught Error: Undefined constant "foo\bar\baz" in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d