summaryrefslogtreecommitdiff
path: root/ext/pcre/tests/bug34790.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pcre/tests/bug34790.phpt')
-rwxr-xr-xext/pcre/tests/bug34790.phpt23
1 files changed, 0 insertions, 23 deletions
diff --git a/ext/pcre/tests/bug34790.phpt b/ext/pcre/tests/bug34790.phpt
deleted file mode 100755
index c375ae5ac8..0000000000
--- a/ext/pcre/tests/bug34790.phpt
+++ /dev/null
@@ -1,23 +0,0 @@
---TEST--
-Bug #34790 (preg_match_all(), named capturing groups, variable assignment/return => crash)
---FILE--
-<?php
-function func1(){
- $string = 'what the word and the other word the';
- preg_match_all('/(?P<word>the)/', $string, $matches);
- return $matches['word'];
-}
-$words = func1();
-var_dump($words);
-?>
---EXPECT--
-array(4) {
- [0]=>
- string(3) "the"
- [1]=>
- string(3) "the"
- [2]=>
- string(3) "the"
- [3]=>
- string(3) "the"
-}