blob: 7cc856b93a3af73ecbacb466b2d5a9e7b2e20421 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--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
|