1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/constants/constants_004.phpt

14 lines
224 B
PHP

--TEST--
Trying to redeclare constant inside namespace
--FILE--
<?php
namespace foo;
const foo = 1;
const foo = 2;
?>
--EXPECTF--
Warning: Constant foo\foo already defined, this will be an error in PHP 9 in %s on line %d