]> granicus.if.org Git - php/commitdiff
No longer needed
authorMarcus Boerger <helly@php.net>
Tue, 3 Feb 2004 22:05:30 +0000 (22:05 +0000)
committerMarcus Boerger <helly@php.net>
Tue, 3 Feb 2004 22:05:30 +0000 (22:05 +0000)
tests/lang/bug26900.phpt [deleted file]

diff --git a/tests/lang/bug26900.phpt b/tests/lang/bug26900.phpt
deleted file mode 100755 (executable)
index 4af0df8..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
---TEST--
-Bug #26900 (Memory leak when passing arguments to __clone())
---FILE--
-<?php
-       class foo {
-               function __clone() {}
-       }
-    
-       $a = new foo;
-       $b = $a->__clone('bad argument');
-
-       echo "OK\n";
-?>
---EXPECT--
-OK