Annotation of embedaddon/php/Zend/tests/ns_045.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: 045: Name conflict and constants (php name in case if ns name exists)
        !             3: --FILE--
        !             4: <?php
        !             5: namespace test\ns1;
        !             6: 
        !             7: const INI_ALL = 0;
        !             8: 
        !             9: var_dump(\INI_ALL);
        !            10: --EXPECT--
        !            11: int(7)

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>