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

1.1     ! misho       1: --TEST--
        !             2: 006: Run-time name conflict (ns name)
        !             3: --FILE--
        !             4: <?php
        !             5: namespace test\ns1;
        !             6: 
        !             7: class Exception {
        !             8: }
        !             9: 
        !            10: $x = "test\\ns1\\Exception";
        !            11: echo get_class(new $x),"\n";
        !            12: --EXPECT--
        !            13: test\ns1\Exception

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