--TEST-- Bug #63635 (Segfault in gc_collect_cycles) --FILE-- children[] = $this; } $this->children[] = $this; } function __destruct() { $this->children = NULL; } } define("MAX", 16); for ($n = 0; $n < 20; $n++) { $top = new Node(); for ($i=0 ; $i --EXPECT-- 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 ok