xref: /PHP-8.2/Zend/tests/ns_051.phpt (revision 7aacc705)
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?>
12--EXPECT--
13int(7)
14