summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/bug75607.phpt
blob: 032b7c3d788486ca5925d17805288d18f56b7a4d (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
--TEST--
Bug #75607 (Comparison of initial static properties failing)
--FILE--
<?php

trait T1
{
    public static $prop1 = 1;
}

class Base
{
    public static $prop1 = 1;
}

class Child extends base
{
    use T1;
}

echo "DONE";

?>
--EXPECT--
DONE