summaryrefslogtreecommitdiff
path: root/Zend/tests/bug33277.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug33277.phpt')
-rw-r--r--Zend/tests/bug33277.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/tests/bug33277.phpt b/Zend/tests/bug33277.phpt
index 859c449633..5a84d365dc 100644
--- a/Zend/tests/bug33277.phpt
+++ b/Zend/tests/bug33277.phpt
@@ -7,20 +7,20 @@ class foo {
echo "private!\n";
}
}
-
+
class fooson extends foo {
function barson() {
$this->bar();
}
}
-
+
class foo2son extends fooson {
-
+
function bar() {
echo "public!\n";
}
}
-
+
$b = new foo2son();
$b->barson();
?>