summaryrefslogtreecommitdiff
path: root/tests/lang/bug21820.phpt
blob: 0ca233ea84113c7a6905f6c2521ce2f34b738fe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--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 .*