xref: /PHP-5.5/Zend/tests/errmsg_006.phpt (revision 0f0fe9c9)
1--TEST--
2errmsg: can't use [] for reading
3--FILE--
4<?php
5
6$a = array();
7$b = $a[];
8
9echo "Done\n";
10?>
11--EXPECTF--
12Fatal error: Cannot use [] for reading in %s on line %d
13