xref: /PHP-8.2/tests/lang/bug27535.phpt (revision f8d79582)
1--TEST--
2Bug #27535 (Objects pointing to each other cause Apache to crash)
3--FILE--
4<?php
5
6class Class1
7{
8    public $_Class2_obj;
9}
10
11class Class2
12{
13    public $storage = '';
14
15    function __construct()
16    {
17        $this->storage = new Class1();
18
19        $this->storage->_Class2_obj = $this;
20    }
21}
22
23$foo = new Class2();
24
25?>
26Alive!
27--EXPECT--
28Alive!
29