mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
12 lines
217 B
PHP
12 lines
217 B
PHP
--TEST--
|
|
Bug #29893 (segfault when using array as index)
|
|
--FILE--
|
|
<?php
|
|
$base = 50;
|
|
$base[$base] -= 0;
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
Warning: Cannot use a scalar value as an array in %sbug29893.php on line %d
|
|
===DONE===
|