mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
12 lines
154 B
PHP
12 lines
154 B
PHP
--TEST--
|
|
Error case: class constant as an array
|
|
--FILE--
|
|
<?php
|
|
class myclass
|
|
{
|
|
const myConst = array();
|
|
}
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===DONE===
|