--TEST-- Bug #70805 (Segmentation faults whilst running Drupal 8 test suite) (Crash) --INI-- zend.enable_gc = 1 --FILE-- b = new B; $a->b->a = $a; $i = 0; $c = new A; $array = array($c); unset($c); while ($i++ < 9998) { $t = []; $t[] = &$t; unset($t); } $t = [new C]; $t[] = &$t; unset($t); unset($a); var_dump(gc_collect_cycles()); ?> --EXPECT-- int(2)