php-src/Zend/tests/use_const/no_global_fallback.phpt
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