ru_php/Zend/tests/attributes/override/properties_18.phpt

20 lines
210 B
PHP

--TEST--
#[\Override]: Properties: Static property.
--FILE--
<?php
class P {
public static mixed $p;
}
class C extends P {
#[\Override]
public static mixed $p;
}
echo "Done";
?>
--EXPECT--
Done