1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/Zend/tests/bug32833.phpt
Antony Dovgal b64823deb7 fix test names
2007-05-07 17:54:12 +00:00

11 lines
137 B
PHP

--TEST--
Bug #32833 (Invalid opcode with $a[] .= '')
--FILE--
<?php
$test = array();
$test[] .= "ok\n";
echo $test[0];
?>
--EXPECT--
ok