mirror of
https://github.com/php/php-src.git
synced 2024-12-28 11:20:29 +08:00
13 lines
205 B
PHP
13 lines
205 B
PHP
--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
|