summaryrefslogtreecommitdiff
path: root/tests/lang/bug27535.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/bug27535.phpt')
-rw-r--r--tests/lang/bug27535.phpt28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/lang/bug27535.phpt b/tests/lang/bug27535.phpt
deleted file mode 100644
index a6ceae7463..0000000000
--- a/tests/lang/bug27535.phpt
+++ /dev/null
@@ -1,28 +0,0 @@
---TEST--
-Bug #27535 (Objects pointing to each other cause Apache to crash)
---FILE--
-<?php
-
-class Class1
-{
- public $_Class2_obj;
-}
-
-class Class2
-{
- public $storage = '';
-
- function Class2()
- {
- $this->storage = new Class1();
-
- $this->storage->_Class2_obj = $this;
- }
-}
-
-$foo = new Class2();
-
-?>
-Alive!
---EXPECT--
-Alive!