summaryrefslogtreecommitdiff
path: root/Zend/tests/bug38234.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug38234.phpt')
-rwxr-xr-xZend/tests/bug38234.phpt18
1 files changed, 0 insertions, 18 deletions
diff --git a/Zend/tests/bug38234.phpt b/Zend/tests/bug38234.phpt
deleted file mode 100755
index a81a3aadcc..0000000000
--- a/Zend/tests/bug38234.phpt
+++ /dev/null
@@ -1,18 +0,0 @@
---TEST--
-Bug #38234 (Exception in __clone makes memory leak)
---FILE--
-<?php
-class Foo {
- function __clone() {
- throw new Exception();
- }
-}
-try {
- $x = new Foo();
- $y = clone $x;
-} catch (Exception $e) {
-}
-echo "ok\n";
-?>
---EXPECT--
-ok