Annotation of embedaddon/php/Zend/tests/access_modifiers_007.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: abstract final methods errmsg
                      3: --FILE--
                      4: <?php
                      5: 
                      6: class test {
                      7:        final abstract function foo();
                      8: }
                      9: 
                     10: echo "Done\n";
                     11: ?>
                     12: --EXPECTF--    
                     13: Fatal error: Cannot use the final modifier on an abstract class member in %s on line %d

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