mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
e52684ea8a
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
11 lines
253 B
PHP
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
|