Annotation of embedaddon/php/tests/classes/factory_and_singleton_004.phpt, revision 1.1
1.1 ! misho 1: --TEST--
! 2: ZE2 factory and singleton, test 4
! 3: --SKIPIF--
! 4: <?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
! 5: --FILE--
! 6: <?php
! 7: class test {
! 8:
! 9: private function __construct($x) {
! 10: }
! 11: }
! 12:
! 13: $obj = new test;
! 14:
! 15: echo "Done\n";
! 16: ?>
! 17: --EXPECTF--
! 18: Fatal error: Call to private test::__construct() from invalid context in %s on line %d
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>