summaryrefslogtreecommitdiff
path: root/Zend/tests/array_type_hint_001.phpt
blob: b110622aeba1a1c2b0a23001b06804578b049ace (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
Array type hint
--FILE--
<?php
function foo(array $a) {
	echo count($a)."\n";
}

foo(array(1,2,3));
foo(123);
?>
--EXPECTF--
3

Fatal error: Argument 1 must be an array, called in %sarray_type_hint_001.php on line 7 and defined in %sarray_type_hint_001.php on line 2