Annotation of embedaddon/php/Zend/tests/abstract-static.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Test for abstract static classes
        !             3: --FILE--
        !             4: <?php
        !             5: abstract class TestClass
        !             6: {
        !             7:     abstract static public function getName();
        !             8: }
        !             9: ?>
        !            10: ===DONE===
        !            11: --EXPECTF--
        !            12: 
        !            13: Strict Standards: Static function TestClass::getName() should not be abstract in %sabstract-static.php on line %d
        !            14: ===DONE===

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