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

15 lines
152 B
Plaintext
Raw Normal View History

2008-06-07 14:10:21 +00:00
--TEST--
SPL: FixedArray: Testing setSize() with NULL
2008-06-07 14:10:21 +00:00
--FILE--
<?php
$a = new SplFixedArray(100);
2008-06-07 14:10:21 +00:00
$a->setSize(NULL);
print "ok\n";
?>
--EXPECT--
ok