Annotation of embedaddon/php/tests/classes/abstract_final.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: ZE2 A final method cannot be 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 fail {
        !             9:        abstract final function show();
        !            10: }
        !            11: 
        !            12: echo "Done\n"; // Shouldn't be displayed
        !            13: ?>
        !            14: --EXPECTF--
        !            15: 
        !            16: Fatal error: Cannot use the final modifier on an abstract class member in %s on line %d

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