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

1.1     ! misho       1: --TEST--
        !             2: Bug #41633.2 (Undefined class constants must not be substituted by strings)
        !             3: --FILE--
        !             4: <?php
        !             5: class Foo {
        !             6:        const A = self::B;
        !             7: }
        !             8: echo Foo::A."\n";
        !             9: ?>
        !            10: --EXPECTF--
        !            11: Fatal error: Undefined class constant 'self::B' in %sbug41633_2.php on line 5

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