xref: /PHP-5.5/Zend/tests/ns_051.phpt (revision 7126de49)
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