mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
13 lines
227 B
PHP
13 lines
227 B
PHP
--TEST--
|
|
Declaring static property for a readonly class is forbidden
|
|
--FILE--
|
|
<?php
|
|
|
|
readonly class Foo
|
|
{
|
|
public static int $bar;
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Static property Foo::$bar cannot be readonly in %s on line %d
|