summaryrefslogtreecommitdiff
path: root/Zend/tests/bug76860.phpt
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2018-09-11 12:10:14 +0300
committerDmitry Stogov <dmitry@zend.com>2018-09-11 12:10:14 +0300
commit5c39b2c328d002e81dd4889ca67a70e55b485861 (patch)
tree7a1adb70f3ea4bb78bae3e4e63eeaf7a7cc42dfa /Zend/tests/bug76860.phpt
parent3a249e769b293afa454b18b8d894c3395683d26c (diff)
downloadphp-git-5c39b2c328d002e81dd4889ca67a70e55b485861.tar.gz
Added test for bug #76860 (Missed "Accessing static property as non static" warning).
It's already fixed by previous commit.
Diffstat (limited to 'Zend/tests/bug76860.phpt')
-rw-r--r--Zend/tests/bug76860.phpt31
1 files changed, 31 insertions, 0 deletions
diff --git a/Zend/tests/bug76860.phpt b/Zend/tests/bug76860.phpt
new file mode 100644
index 0000000000..046edba7f2
--- /dev/null
+++ b/Zend/tests/bug76860.phpt
@@ -0,0 +1,31 @@
+--TEST--
+Bug #76860 (Missed "Accessing static property as non static" warning)
+--FILE--
+<?php
+class A {
+ private static $a = "a";
+ protected static $b = "b";
+ public static $c = "c";
+ public function __construct() {
+ var_dump($this->a, $this->b, $this->c);
+ }
+}
+class B extends A {
+}
+new B;
+?>
+--EXPECTF--
+Notice: Accessing static property B::$a as non static in %sbug76860.php on line 7
+
+Notice: Undefined property: B::$a in %sbug76860.php on line 7
+
+Notice: Accessing static property B::$b as non static in %sbug76860.php on line 7
+
+Notice: Undefined property: B::$b in %sbug76860.php on line 7
+
+Notice: Accessing static property B::$c as non static in %sbug76860.php on line 7
+
+Notice: Undefined property: B::$c in %sbug76860.php on line 7
+NULL
+NULL
+NULL