summaryrefslogtreecommitdiff
path: root/Zend/tests/bug36268.phpt
blob: 5276d50d48188d1fce5219fb50f0c7a0b9c91706 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--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