1--TEST-- 2errmsg: can't use [] for unsetting 3--FILE-- 4<?php 5 6$a = array(); 7unset($a[]); 8 9echo "Done\n"; 10?> 11--EXPECTF-- 12Fatal error: Cannot use [] for unsetting in %s on line %d 13