
| Path : /usr/src/php/Zend/tests/ |
| Current File : //usr/src/php/Zend/tests/ns_051.phpt |
--TEST--
051: Name conflict and compile-time constants (php name)
--FILE--
<?php
namespace test\ns1;
function foo($x = INI_ALL) {
var_dump($x);
}
foo();
--EXPECT--
int(7)