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

1.1     ! misho       1: --TEST--
        !             2: errmsg: Non-abstract method must contain body
        !             3: --FILE--
        !             4: <?php
        !             5: 
        !             6: abstract class test { 
        !             7: } 
        !             8: 
        !             9: class Impl extends Test { 
        !            10:        function Foo(); 
        !            11: }
        !            12: 
        !            13: echo "Done\n";
        !            14: ?>
        !            15: --EXPECTF--    
        !            16: Fatal error: Non-abstract method Impl::Foo() must contain body in %s on line %d

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