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

1.1     ! misho       1: --TEST--
        !             2: 063: Old-style constructors in namesapces (not supported!)
        !             3: --FILE--
        !             4: <?php
        !             5: namespace Foo;
        !             6: class Bar {
        !             7:        function Bar() {
        !             8:                echo "ok\n";
        !             9:        }
        !            10: }
        !            11: new Bar();
        !            12: echo "ok\n";
        !            13: --EXPECT--
        !            14: ok

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