1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 13:31:27 +02:00
Files
archived-php-src/Zend/tests/ctor_promotion_interface.phpt
2020-06-05 15:15:51 +02:00

13 lines
286 B
PHP

--TEST--
Constructor promotion cannot be used inside an abstract constructor (interface variant)
--FILE--
<?php
interface Test {
public function __construct(public int $x);
}
?>
--EXPECTF--
Fatal error: Cannot declare promoted property in an abstract constructor in %s on line %d