mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
10 lines
222 B
PHP
Executable File
10 lines
222 B
PHP
Executable File
--TEST--
|
|
Bug #39304 (Segmentation fault with list unpacking of string offset)
|
|
--FILE--
|
|
<?php
|
|
$s = "";
|
|
list($a, $b) = $s[0];
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot use string offset as an array in %sbug39304.php on line 3
|