Annotation of embedaddon/php/ext/reflection/tests/bug49092.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #49092 (ReflectionFunction fails to work with functions in fully qualified namespaces)
        !             3: --FILE--
        !             4: <?php
        !             5: namespace ns;
        !             6: function func(){}
        !             7: new \ReflectionFunction('ns\func');
        !             8: new \ReflectionFunction('\ns\func');
        !             9: echo "Ok\n"
        !            10: ?>
        !            11: --EXPECT--
        !            12: Ok

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