| Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/traits/ |
| Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/traits/bug75607.phpt |
--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