diff options
Diffstat (limited to 'tests/lang')
-rwxr-xr-x | tests/lang/bug26900.phpt | 15 |
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 |