mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
12 lines
271 B
PHP
12 lines
271 B
PHP
--TEST--
|
|
SPL: FixedArray: Trying to instantiate passing object to constructor parameter
|
|
--FILE--
|
|
<?php
|
|
|
|
$b = new stdClass;
|
|
|
|
$a = new SplFixedArray($b);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: SplFixedArray::__construct() expects parameter 1 to be integer, object given in %s on line %d
|