mirror of
https://github.com/php/php-src.git
synced 2026-04-18 05:21:02 +02:00
14 lines
229 B
PHP
14 lines
229 B
PHP
--TEST--
|
|
Testing for regression on const list syntax and arrays
|
|
--FILE--
|
|
<?php
|
|
|
|
class A {
|
|
const A = [1, FOREACH];
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
|
|
Parse error: syntax error, unexpected 'FOREACH' (T_FOREACH), expecting ']' in %s on line %d
|