1--TEST--
2SPL: SplObjectStorage: recursive var_dump
3--FILE--
4<?php
5$o = new SplObjectStorage();
6
7$o[new StdClass] = $o;
8
9var_dump($o);
10?>
11--EXPECTF--
12object(SplObjectStorage)#%d (1) {
13  ["storage":"SplObjectStorage":private]=>
14  array(1) {
15    [0]=>
16    array(2) {
17      ["obj"]=>
18      object(stdClass)#%d (0) {
19      }
20      ["inf"]=>
21      *RECURSION*
22    }
23  }
24}
25