blob: 8d0f9ad079336a695768861672367e17a6fe3ee0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
--TEST--
Redeclare inherited public static property as public static.
--FILE--
<?php
class A
{
public static $p = "A::p (static)";
static function showA()
{
echo self::$p . "\n";
}
}
class B extends A
{
public static $p = "B::p (static)";
static function showB()
{
echo self::$p . "\n";
}
}
A::showA();
B::showA();
B::showB();
?>
--EXPECT--
A::p (static)
A::p (static)
B::p (static)
|