xref: /PHP-7.4/Zend/tests/traits/bug75607.phpt (revision 2d48d734)
1--TEST--
2Bug #75607 (Comparison of initial static properties failing)
3--FILE--
4<?php
5
6trait T1
7{
8	public static $prop1 = 1;
9}
10
11class Base
12{
13	public static $prop1 = 1;
14}
15
16class Child extends base
17{
18	use T1;
19}
20
21echo "DONE";
22
23?>
24--EXPECT--
25DONE
26