summaryrefslogtreecommitdiff
path: root/Zend/tests/bug31177-2.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug31177-2.phpt')
-rwxr-xr-xZend/tests/bug31177-2.phpt18
1 files changed, 0 insertions, 18 deletions
diff --git a/Zend/tests/bug31177-2.phpt b/Zend/tests/bug31177-2.phpt
deleted file mode 100755
index 7afeb73bb1..0000000000
--- a/Zend/tests/bug31177-2.phpt
+++ /dev/null
@@ -1,18 +0,0 @@
---TEST--
-Bug #31177 (menory corruption because of incorrect refcounting)
---FILE--
-<?php
-class foo {
- function foo($n=0) {
- if($n) throw new Exception("new");
- }
-}
-$x = new foo();
-try {
- $y=$x->foo(1);
-} catch (Exception $e) {
- var_dump($x);
-}
---EXPECT--
-object(foo)#1 (0) {
-}