summaryrefslogtreecommitdiff
path: root/Zend/tests/bug27598.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug27598.phpt')
-rwxr-xr-xZend/tests/bug27598.phpt12
1 files changed, 0 insertions, 12 deletions
diff --git a/Zend/tests/bug27598.phpt b/Zend/tests/bug27598.phpt
deleted file mode 100755
index 534e8cf857..0000000000
--- a/Zend/tests/bug27598.phpt
+++ /dev/null
@@ -1,12 +0,0 @@
---TEST--
-Bug #27598 (list() array key assignment causes HUGE memory leak)
---FILE--
-<?php
-list($out[0]) = array(1);
-var_dump($out);
-?>
---EXPECT--
-array(1) {
- [0]=>
- int(1)
-}