summaryrefslogtreecommitdiff
path: root/Zend/tests/bug36268.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug36268.phpt')
-rwxr-xr-xZend/tests/bug36268.phpt14
1 files changed, 0 insertions, 14 deletions
diff --git a/Zend/tests/bug36268.phpt b/Zend/tests/bug36268.phpt
deleted file mode 100755
index 5276d50d48..0000000000
--- a/Zend/tests/bug36268.phpt
+++ /dev/null
@@ -1,14 +0,0 @@
---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