diff options
Diffstat (limited to 'Zend/tests/bug38234.phpt')
-rwxr-xr-x | Zend/tests/bug38234.phpt | 18 |
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 |