summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug69227.phpt
blob: 812d8bafd8a3b94b5110df8b78ea573702a01a9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Bug #69227 (Use after free in zval_scan caused by spl_object_storage_get_gc)
--INI--
zend.enable_gc=1
--FILE--
<?php

$s = new SplObjectStorage();
$s->attach($s);
gc_collect_cycles();
echo "ok";
?>
--EXPECT--
ok