15 lines
290 B
PHP
15 lines
290 B
PHP
--TEST--
|
|
GH-15419: Readonly classes may not declare promoted properties with hooks
|
|
--FILE--
|
|
<?php
|
|
|
|
readonly class C {
|
|
public function __construct(
|
|
public int $prop { set => $value; },
|
|
) {}
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Hooked properties cannot be readonly in %s on line %d
|