Annotation of embedaddon/php/tests/lang/bug27535.phpt, revision 1.1.1.1

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>