mirror of
https://github.com/php/php-src.git
synced 2026-04-17 13:01:02 +02:00
17 lines
147 B
PHP
17 lines
147 B
PHP
--TEST--
|
|
SPL: FastArray: Setting size to 0
|
|
--FILE--
|
|
<?php
|
|
|
|
$a = new SplFastArray(1);
|
|
|
|
$a[0] = 1;
|
|
|
|
$a->setSize(0);
|
|
|
|
print "ok\n";
|
|
|
|
?>
|
|
--EXPECT--
|
|
ok
|