summaryrefslogtreecommitdiff
path: root/tests/classes/inheritance_005.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/classes/inheritance_005.phpt')
-rw-r--r--tests/classes/inheritance_005.phpt42
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/classes/inheritance_005.phpt b/tests/classes/inheritance_005.phpt
new file mode 100644
index 000000000..b6f47b2a6
--- /dev/null
+++ b/tests/classes/inheritance_005.phpt
@@ -0,0 +1,42 @@
+--TEST--
+Check for inherited old-style constructor.
+--FILE--
+<?php
+ class A
+ {
+ function A()
+ {
+ echo "In " . __METHOD__ . "\n";
+ }
+ }
+
+ class B extends A
+ {
+ }
+
+ class C extends B
+ {
+ }
+
+
+ echo "About to construct new B: ";
+ $b = new B;
+ echo "About to invoke implicit B::B(): ";
+ $b->B();
+
+ echo "\nAbout to construct new C: ";
+ $c = new C;
+ echo "About to invoke implicit C::B(): ";
+ $c->B();
+ echo "About to invoke implicit C::C(): ";
+ $c->C();
+?>
+--EXPECTF--
+About to construct new B: In A::A
+About to invoke implicit B::B(): In A::A
+
+About to construct new C: In A::A
+About to invoke implicit C::B(): In A::A
+About to invoke implicit C::C(): In A::A
+
+