diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-02-12 10:27:28 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-02-12 11:25:50 +0100 |
commit | ae6f45ad45e072260d93f828d81fee9548123044 (patch) | |
tree | 29267ad6f03b52e841eede6881c5b492b6285d64 /Zend/tests/gc_004.phpt | |
parent | 9e5650265c21245a1920ae444d70806600039195 (diff) | |
download | php-git-ae6f45ad45e072260d93f828d81fee9548123044.tar.gz |
var_dump(): Don't skip recursion detection on first level
This is confusing. The current output doesn't make it clear that
we're in fact recursing to the top-level structure.
Closes GH-5171.
Diffstat (limited to 'Zend/tests/gc_004.phpt')
-rw-r--r-- | Zend/tests/gc_004.phpt | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Zend/tests/gc_004.phpt b/Zend/tests/gc_004.phpt index 1b6f70abe6..714ad6aa9b 100644 --- a/Zend/tests/gc_004.phpt +++ b/Zend/tests/gc_004.phpt @@ -14,10 +14,7 @@ echo "ok\n" --EXPECT-- array(1) { [0]=> - &array(1) { - [0]=> - *RECURSION* - } + *RECURSION* } int(1) ok |