summaryrefslogtreecommitdiff
path: root/Zend/tests/bug29674.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug29674.phpt')
-rwxr-xr-xZend/tests/bug29674.phpt41
1 files changed, 0 insertions, 41 deletions
diff --git a/Zend/tests/bug29674.phpt b/Zend/tests/bug29674.phpt
deleted file mode 100755
index aef91f4061..0000000000
--- a/Zend/tests/bug29674.phpt
+++ /dev/null
@@ -1,41 +0,0 @@
---TEST--
-Bug #29674 (inherited method doesn't have access to private variables of the derived class)
---FILE--
-<?php
-
-class BaseClass
-{
- private $private_base = "Base";
-
- function printVars ()
- {
- var_dump($this->private_base);
- var_dump($this->private_child);
- }
-}
-
-class ChildClass extends BaseClass
-{
- private $private_child = "Child";
-}
-
-echo "===BASE===\n";
-$obj = new BaseClass;
-$obj->printVars();
-
-echo "===CHILD===\n";
-$obj = new ChildClass;
-$obj->printVars();
-
-?>
-===DONE===
---EXPECTF--
-===BASE===
-string(4) "Base"
-
-Notice: Undefined property: BaseClass::$private_child in %sbug29674.php on line %d
-NULL
-===CHILD===
-string(4) "Base"
-
-Fatal error: Cannot access private property ChildClass::$private_child in %sbug29674.php on line %d