summaryrefslogtreecommitdiff
path: root/Zend/tests/type_declarations/typed_properties_037.phpt
blob: 87efa3317a0af6bd76ea0d398d0c8caae673104d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
Test typed properties var_dump uninitialized
--FILE--
<?php
$foo = new class {
    public int $bar = 10, $qux;
};

var_dump($foo);
?>
--EXPECTF--
object(class@anonymous)#%d (1) {
  ["bar"]=>
  int(10)
  ["qux"]=>
  uninitialized(int)
}