1--TEST--
2Type of promoted property may not be callable
3--FILE--
4<?php
5
6class Test {
7    public function __construct(public callable $callable) {}
8}
9
10?>
11--EXPECTF--
12Fatal error: Property Test::$callable cannot have type callable in %s on line %d
13