blob: 9bb5533d7e2250a72f814ac37cdc0975b5f1c880 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--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
|