mirror of
https://github.com/php/php-src.git
synced 2026-04-25 08:58:28 +02:00
d52ad52511
(MFH: #39018)
14 lines
276 B
PHP
14 lines
276 B
PHP
--TEST--
|
|
Bug #41919 (crash in string to array conversion)
|
|
--FILE--
|
|
<?php
|
|
$foo="50";
|
|
$foo[3]->bar[1] = "bang";
|
|
|
|
echo "ok\n";
|
|
?>
|
|
--EXPECTF--
|
|
Notice: Uninitialized string offset: 3 in %s on line %d
|
|
|
|
Fatal error: Cannot use string offset as an object in %sbug41919.php on line %d
|