Annotation of embedaddon/php/tests/classes/abstract_redeclare.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: ZE2 A method cannot be redeclared abstract
                      3: --SKIPIF--
                      4: <?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
                      5: --FILE--
                      6: <?php
                      7: 
                      8: class pass {
                      9:        function show() {
                     10:                echo "Call to function show()\n";
                     11:        }
                     12: }
                     13: 
                     14: class fail extends pass {
                     15:        abstract function show();
                     16: }
                     17: 
                     18: echo "Done\n"; // Shouldn't be displayed
                     19: ?>
                     20: --EXPECTF--
                     21: 
                     22: Fatal error: Class fail contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (fail::show) in %sabstract_redeclare.php on line %d

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