1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/Zend/tests/bug32833.phpt
2018-10-14 12:07:20 -03:00

11 lines
136 B
PHP

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