1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/spl/tests/fixedarray_011.phpt
2008-06-18 14:54:40 +00:00

15 lines
152 B
PHP

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