1--TEST-- 2051: Name conflict and compile-time constants (php name) 3--FILE-- 4<?php 5namespace test\ns1; 6 7function foo($x = INI_ALL) { 8 var_dump($x); 9} 10foo(); 11--EXPECT-- 12int(7) 13