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

17 lines
271 B
PHP

--TEST--
#[\Override]: Static method no parent class.
--FILE--
<?php
class C
{
#[\Override]
public static function c(): void {}
}
echo "Done";
?>
--EXPECTF--
Fatal error: C::c() has #[\Override] attribute, but no matching parent method exists in %s on line %d