xref: /PHP-8.2/Zend/tests/ns_047.phpt (revision 7aacc705)
1--TEST--
2047: Run-time name conflict and constants (php name)
3--FILE--
4<?php
5namespace test\ns1;
6
7const INI_ALL = 0;
8
9var_dump(constant("INI_ALL"));
10?>
11--EXPECT--
12int(7)
13