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