summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplFixedArray_construct_param_SplFixedArray.phpt
blob: ab9b430d2a7ec26a1ecf7e96415de483229b67be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
Create an SplFixedArray using an SplFixedArray object.
--CREDITS--
Philip Norton philipnorton42@gmail.com
--FILE--
<?php
try {
    $array = new SplFixedArray(new SplFixedArray(3));
} catch (TypeError $iae) {
    echo "Ok - ".$iae->getMessage().PHP_EOL;
}

?>
--EXPECT--
Ok - SplFixedArray::__construct(): Argument #1 ($size) must be of type int, SplFixedArray given