13 lines
256 B
Plaintext
13 lines
256 B
Plaintext
|
|
--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
|