xref: /PHP-7.2/ext/spl/tests/fixedarray_009.phpt (revision 64b167d2)
1--TEST--
2SPL: FixedArray: Trying to instantiate passing string to construtor parameter
3--FILE--
4<?php
5
6try {
7	$a = new SplFixedArray('FOO');
8} catch (TypeError $iae) {
9	echo "Ok - ".$iae->getMessage().PHP_EOL;
10}
11?>
12--EXPECTF--
13Ok - SplFixedArray::__construct() expects parameter 1 to be integer, string given
14