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