1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/Zend/tests/bug32833.phpt
Antony Dovgal ccd97f3a21 fix test names
2007-05-07 17:23:53 +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