xref: /PHP-5.5/ext/spl/tests/fixedarray_005.phpt (revision 0f5ddaf4)
1--TEST--
2SPL: FixedArray: Trying to instantiate passing object to constructor parameter
3--FILE--
4<?php
5
6$b = new stdClass;
7
8$a = new SplFixedArray($b);
9
10?>
11--EXPECTF--
12Warning: SplFixedArray::__construct() expects parameter 1 to be long, object given in %s on line %d
13