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

1.1       misho       1: --TEST--
                      2: errmsg: function cannot be declared private
                      3: --FILE--
                      4: <?php
                      5: 
                      6: abstract class test {
                      7:        abstract private function foo() {
                      8:        }
                      9: }
                     10: 
                     11: echo "Done\n";
                     12: ?>
                     13: --EXPECTF--    
                     14: Fatal error: Abstract function test::foo() cannot be declared private in %s on line %d

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