summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
Diffstat (limited to 'Zend')
-rw-r--r--Zend/tests/access_modifiers_008.phpt19
1 files changed, 19 insertions, 0 deletions
diff --git a/Zend/tests/access_modifiers_008.phpt b/Zend/tests/access_modifiers_008.phpt
new file mode 100644
index 0000000000..47d428b598
--- /dev/null
+++ b/Zend/tests/access_modifiers_008.phpt
@@ -0,0 +1,19 @@
+--TEST--
+Inconsistencies when accessing protected members
+--FILE--
+<?php
+
+class A {
+ static protected function f() {return 'A::f()';}
+}
+class B1 extends A {
+ static protected function f() {return 'B1::f()';}
+}
+class B2 extends A {
+ static public function test() {echo B1::f();}
+}
+B2::test();
+
+?>
+--EXPECTF--
+Fatal error: Call to protected method B1::f() from context 'B2' in %s on line %d