summaryrefslogtreecommitdiff
path: root/tests/lang/029.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/029.phpt')
-rw-r--r--tests/lang/029.phpt34
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/lang/029.phpt b/tests/lang/029.phpt
deleted file mode 100644
index 65b15c00a0..0000000000
--- a/tests/lang/029.phpt
+++ /dev/null
@@ -1,34 +0,0 @@
---TEST--
-OO Bug Test (Bug #7515)
---POST--
---GET--
---FILE--
-<?php
-class obj {
- function method() {}
-}
-
-$o->root=new obj();
-
-ob_start();
-var_dump($o);
-$x=ob_get_contents();
-ob_end_clean();
-
-$o->root->method();
-
-ob_start();
-var_dump($o);
-$y=ob_get_contents();
-ob_end_clean();
-if ($x == $y) {
- print "success";
-} else {
- print "failure
-x=$x
-y=$y
-";
-}
-?>
---EXPECT--
-success