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