summaryrefslogtreecommitdiff
path: root/tests/lang
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-02-03 22:05:30 +0000
committerMarcus Boerger <helly@php.net>2004-02-03 22:05:30 +0000
commit4137d77ca96630e8b1bba8d076aab64990670d48 (patch)
tree55c4f71587338bb0439a90c949bd72f7c0066b4b /tests/lang
parent38e5a2a3749b4a785a0c1de4072cca74581d2b61 (diff)
downloadphp-git-4137d77ca96630e8b1bba8d076aab64990670d48.tar.gz
No longer needed
Diffstat (limited to 'tests/lang')
-rwxr-xr-xtests/lang/bug26900.phpt15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/lang/bug26900.phpt b/tests/lang/bug26900.phpt
deleted file mode 100755
index 4af0df89da..0000000000
--- a/tests/lang/bug26900.phpt
+++ /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