13 lines
154 B
Plaintext
13 lines
154 B
Plaintext
|
|
--TEST--
|
||
|
|
Error case: class constant as an array
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
class myclass
|
||
|
|
{
|
||
|
|
const myConst = array();
|
||
|
|
}
|
||
|
|
?>
|
||
|
|
===DONE===
|
||
|
|
--EXPECT--
|
||
|
|
===DONE===
|