mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
15 lines
241 B
PHP
15 lines
241 B
PHP
--TEST--
|
|
Promoted readonly property must have type
|
|
--FILE--
|
|
<?php
|
|
|
|
class Foo {
|
|
public function __construct(
|
|
public readonly $bar
|
|
) {}
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Readonly property Foo::$bar must have type in %s on line %d
|