php-src/ext/spl/tests/fastarray_010.phpt

17 lines
147 B
Plaintext
Raw Normal View History

2008-06-07 14:10:42 +00:00
--TEST--
SPL: FastArray: Setting size to 0
--FILE--
<?php
$a = new SplFastArray(1);
$a[0] = 1;
$a->setSize(0);
print "ok\n";
?>
--EXPECT--
ok