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

15 lines
150 B
PHP

--TEST--
SPL: FastArray: Testing setSize() with NULL
--FILE--
<?php
$a = new SplFastArray(100);
$a->setSize(NULL);
print "ok\n";
?>
--EXPECT--
ok