mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
First pass at moving `Zend/tests/gh*` tests to existing sub directories Work towards GH-15631
16 lines
397 B
PHP
16 lines
397 B
PHP
--TEST--
|
|
GH-10377 (Unable to have an anonymous readonly class) - usage variation: dynamic properties attribute
|
|
--FILE--
|
|
<?php
|
|
|
|
$readonly_anon = new #[AllowDynamicProperties] readonly class {
|
|
public int $field;
|
|
function __construct() {
|
|
$this->field = 2;
|
|
}
|
|
};
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot apply #[AllowDynamicProperties] to readonly class class@anonymous in %s on line %d
|