summaryrefslogtreecommitdiff
path: root/Zend/tests/type_declarations/typed_properties_014.phpt
blob: 2a02f0381ed2e4e26c7e4b625356917c079874f4 (plain)
1
2
3
4
5
6
7
8
9
10
--TEST--
Test typed properties disallow incorrect type initial value (array)
--FILE--
<?php
class Foo {
	public array $bar = 32;
}
?>
--EXPECTF--
Fatal error: Default value for property of type array can only be an array in %s on line 3