mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
13 lines
218 B
PHP
13 lines
218 B
PHP
--TEST--
|
|
Bug #41919 (crash in string to array conversion)
|
|
--FILE--
|
|
<?php
|
|
$foo="50";
|
|
$foo[3]->bar[1] = "bang";
|
|
|
|
echo "ok\n";
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Cannot use string offset as an array in %s/bug41919.php on line %d
|
|
ok
|