mirror of
https://github.com/php/php-src.git
synced 2025-08-17 14:38:49 +02:00
12 lines
205 B
PHP
12 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
|