php-src/Zend/tests/readonly_props/static.phpt
Nikita Popov 6780aaa532 Implement readonly properties
Add support for readonly properties, for which only a single
initializing assignment from the declaring scope is allowed.

RFC: https://wiki.php.net/rfc/readonly_properties_v2

Closes GH-7089.
2021-07-20 12:05:46 +02:00

13 lines
196 B
PHP

--TEST--
Readonly static property
--FILE--
<?php
class Test {
public static readonly int $prop;
}
?>
--EXPECTF--
Fatal error: Static property Test::$prop cannot be readonly in %s on line %d