summaryrefslogtreecommitdiff
path: root/Zend/tests/ns_051.phpt
blob: 1cb6b00db0fe9610ea801ccc2926df1247b04402 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--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)