Annotation of embedaddon/php/Zend/tests/objects_010.phpt, revision 1.1
1.1 ! misho 1: --TEST--
! 2: redefining constructor (__construct second)
! 3: --INI--
! 4: error_reporting=8191
! 5: --FILE--
! 6: <?php
! 7:
! 8: class test {
! 9: function test() {
! 10: }
! 11: function __construct() {
! 12: }
! 13: }
! 14:
! 15: echo "Done\n";
! 16: ?>
! 17: --EXPECTF--
! 18: Strict Standards: Redefining already defined constructor for class test in %s on line %d
! 19: Done
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>