| Current Path : /hdd/hdd21/main/php5/php-5.6.6/Zend/tests/ |
| Current File : //hdd/hdd21/main/php5/php-5.6.6/Zend/tests/bug36268.phpt |
--TEST--
Bug #36268 (Object destructors called even after fatal errors)
--FILE--
<?php
class Foo {
function __destruct() {
echo "Ha!\n";
}
}
$x = new Foo();
bar();
?>
--EXPECTF--
Fatal error: Call to undefined function bar() in %sbug36268.php on line 8