1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/ext/spl/tests/fixedarray_011.phpt
Gabriel Caruso 4aabfe911e Revert "Update versions for PHP 8.0.21"
This reverts commit 6eedacdf15.
2022-07-06 12:06:48 +02: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