summaryrefslogtreecommitdiff
path: root/tests/lang
diff options
context:
space:
mode:
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