1
0
mirror of https://github.com/php/php-src.git synced 2026-04-03 14:12:38 +02:00
Files
archived-php-src/tests/lang/bug21820.phpt

14 lines
318 B
PHP

--TEST--
Bug #21820 ("$arr['foo']" generates bogus E_NOTICE, should be E_PARSE)
--FILE--
<?php
error_reporting(E_ALL);
$arr = array('foo' => 'bar');
echo "$arr['foo']";
?>
--EXPECTREGEX--
Parse error: (parse|syntax) error, .*expecting `?T_STRING'? or `?T_VARIABLE'? or `?T_NUM_STRING'? in .*bug21820.php on line .*