mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
14 lines
257 B
PHP
14 lines
257 B
PHP
--TEST--
|
|
Error case: duplicate class constant definition
|
|
--FILE--
|
|
<?php
|
|
class myclass
|
|
{
|
|
const myConst = "hello";
|
|
const myConst = "hello again";
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
|
|
Fatal error: Cannot redefine class constant myclass::myConst in %s on line 5
|