mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
14 lines
224 B
PHP
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
|