summaryrefslogtreecommitdiff
path: root/Zend/tests/bug30707.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug30707.phpt')
-rwxr-xr-xZend/tests/bug30707.phpt29
1 files changed, 0 insertions, 29 deletions
diff --git a/Zend/tests/bug30707.phpt b/Zend/tests/bug30707.phpt
deleted file mode 100755
index d37d32974e..0000000000
--- a/Zend/tests/bug30707.phpt
+++ /dev/null
@@ -1,29 +0,0 @@
---TEST--
-Bug #30707 (Segmentation fault on exception in method)
---FILE--
-<?php
-class C {
- function byePHP($plop) {
- echo "ok\n";
- }
-
- function plip() {
- try {
- $this->plap($this->plop());
- } catch(Exception $e) {
- }
- }
-
- function plap($a) {
- }
-
- function plop() {
- throw new Exception;
- }
-}
-
-$x = new C;
-$x->byePHP($x->plip());
-?>
---EXPECT--
-ok