mirror of
https://github.com/php/php-src.git
synced 2024-12-29 03:39:59 +08:00
13 lines
205 B
Plaintext
13 lines
205 B
Plaintext
|
--TEST--
|
||
|
Error case: class constant as an array
|
||
|
--FILE--
|
||
|
<?php
|
||
|
class myclass
|
||
|
{
|
||
|
const myConst = array();
|
||
|
}
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
|
||
|
Fatal error: Arrays are not allowed in class constants in %s on line 4
|