php-src/tests/classes/factory_and_singleton_005.phpt
2003-07-03 07:18:41 +00:00

21 lines
389 B
PHP
Executable File

--TEST--
ZE2 factory and singleton, test 5
--SKIPIF--
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
--FILE--
<?php
class test {
protected function __destruct() {
}
}
$obj = new test;
$obj = NULL;
echo "Done\n";
?>
--EXPECTF--
Warning: Call to protected destructor from context '' in %sfactory_and_singleton_005.php on line %d
Done