php-src/ext/spl/tests/fastarray_012.phpt
2008-06-07 14:10:42 +00:00

20 lines
259 B
PHP

--TEST--
SPL: FastArray: Assigning the object to another variable using []
--FILE--
<?php
$a = new SplFastArray(100);
try {
$b = &$a[];
} catch (Exception $e) {
echo $e->getMessage(), "\n";
}
print "ok\n";
?>
--EXPECT--
Index invalid or out of range
ok