php-src/Zend/tests/gh10377_4.phpt
Niels Dossche e52684ea8a
Fix GH-10377: Unable to have an anonymous readonly class
This fixes the oversight that an anonymous class should be able to be
readonly. Other identifiers such as final and abstract do not make
sense. As we still want nice errors for when users try to use these
modifiers, or use multiple modifiers, we introduce a new function
zend_add_anonymous_class_modifier that will perform verification for
anonymous class modifiers, just like zend_add_class_modifier does for
non-anonymous classes.

Closes GH-10381
2023-02-20 13:32:26 +01:00

11 lines
253 B
PHP

--TEST--
GH-10377 (Unable to have an anonymous readonly class) - usage variation: multiple readonly modifiers
--FILE--
<?php
$x = new readonly readonly class {};
?>
--EXPECTF--
Fatal error: Multiple readonly modifiers are not allowed in %s on line %d