1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 02:02:32 +01:00
Files
archived-php-src/tests/classes/factory_and_singleton_010.phpt
Marcus Boerger e29f589d46 Add more tests.
2003-12-28 18:03:05 +00:00

22 lines
410 B
PHP
Executable File

--TEST--
ZE2 factory and singleton, test 10
--SKIPIF--
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
--FILE--
<?php
class test {
private function __destruct() {
echo __METHOD__ . "\n";
}
}
$obj = new test;
?>
===DONE===
--EXPECTF--
===DONE===
Warning: Call to private test::__destruct() from context '' during shutdown ignored in Unknown on line 0