mirror of
https://github.com/php/php-src.git
synced 2025-01-25 05:04:20 +08:00
1836daf7f9
The "const" statement is still allowed outside of namespaces but arrays are disabled.
9 lines
152 B
PHP
Executable File
9 lines
152 B
PHP
Executable File
--TEST--
|
|
059: Constant arrays
|
|
--FILE--
|
|
<?php
|
|
const C = array();
|
|
--EXPECTF--
|
|
Fatal error: Arrays are not allowed as constants in %sns_059.php on line 2
|
|
|