summaryrefslogtreecommitdiff
path: root/Zend/tests/type_declarations/typed_properties_054.phpt
blob: 281d59f26c61be43de1bb484968c0d9e63eba455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Typed properties disallow callable (nullable variant)
--FILE--
<?php
class A {
    public ?callable $a;
}
$obj = new A;
var_dump($obj);
?>
--EXPECTF--
Fatal error: Property A::$a cannot have type ?callable in %s on line %d