php-src/Zend/tests/gh10377_2.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
245 B
PHP

--TEST--
GH-10377 (Unable to have an anonymous readonly class) - usage variation: abstract modifier
--FILE--
<?php
$x = new abstract class {};
?>
--EXPECTF--
Fatal error: Cannot use the abstract modifier on an anonymous class in %s on line %d