1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/readonly_props/promotion_error1.phpt
2021-07-25 13:13:19 +02:00

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