mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
13 lines
229 B
PHP
13 lines
229 B
PHP
--TEST--
|
|
Bug #41813 (segmentation fault when using string offset as an object)
|
|
--FILE--
|
|
<?php
|
|
|
|
$foo = "50";
|
|
$foo[0]->bar = "xyz";
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot use string offset as an array in %s on line %d
|