summaryrefslogtreecommitdiff
path: root/Zend/tests/bug29689.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug29689.phpt')
-rw-r--r--Zend/tests/bug29689.phpt62
1 files changed, 0 insertions, 62 deletions
diff --git a/Zend/tests/bug29689.phpt b/Zend/tests/bug29689.phpt
deleted file mode 100644
index 74dabc1590..0000000000
--- a/Zend/tests/bug29689.phpt
+++ /dev/null
@@ -1,62 +0,0 @@
---TEST--
-Bug #29689 (default value of protected member overrides default value of private)
---FILE--
-<?php
-class foo {
- private $foo = 'foo';
- private $foo2 = 'foo2';
-
- function printFoo()
- {
- echo __CLASS__, ': ', $this->foo, " ", $this->foo2, "\n";
- }
-}
-
-class bar extends foo {
- protected $foo = 'bar';
-
- function printFoo()
- {
- parent::printFoo();
- echo __CLASS__, ': ', $this->foo, " ", $this->foo2, "\n";
- }
-}
-
-class baz extends bar {
- protected $foo = 'baz';
- protected $foo2 = 'baz2';
-}
-
-class bar2 extends foo {
- function printFoo()
- {
- parent::printFoo();
- echo __CLASS__, ': ', $this->foo, " ", $this->foo2, "\n";
- }
-}
-
-class baz2 extends bar2 {
- protected $foo = 'baz2';
- protected $foo2 = 'baz22';
-}
-
-$bar = new bar;
-$bar->printFoo();
-echo "---baz--\n";
-$baz = new baz();
-$baz->printFoo();
-echo "---baz2--\n";
-$baz = new baz2();
-$baz->printFoo();
-?>
---EXPECTF--
-foo: foo foo2
-bar: bar
-Notice: Undefined property: bar::$foo2 in %s on line %d
-
----baz--
-foo: foo foo2
-bar: baz baz2
----baz2--
-foo: foo foo2
-bar2: baz2 baz22