summaryrefslogtreecommitdiff
path: root/tests/lang/bug21820.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/bug21820.phpt')
-rw-r--r--tests/lang/bug21820.phpt13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/lang/bug21820.phpt b/tests/lang/bug21820.phpt
deleted file mode 100644
index 0ca233ea84..0000000000
--- a/tests/lang/bug21820.phpt
+++ /dev/null
@@ -1,13 +0,0 @@
---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 .*