summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/bug75607.phpt
blob: a3a10425f4bc95e61bd952176363ff1a7c1cdb5b (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 (Comparision 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