1--TEST-- 2059: Constant arrays 3--FILE-- 4<?php 5const C = array(); 6var_dump(C); 7--EXPECTF-- 8array(0) { 9} 10