php-src/Zend/tests/readonly_classes/readonly_class_property3.phpt

13 lines
227 B
PHP

--TEST--
Declaring static property for a readonly class is forbidden
--FILE--
<?php
readonly class Foo
{
public static int $bar;
}
?>
--EXPECTF--
Fatal error: Static property Foo::$bar cannot be readonly in %s on line %d