mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
14 lines
187 B
PHP
14 lines
187 B
PHP
--TEST--
|
|
Bug #26281 (switch() crash when condition is a string offset)
|
|
--FILE--
|
|
<?php
|
|
$x = 'abc';
|
|
switch ($x[0]) {
|
|
case 'a':
|
|
echo "no crash\n";
|
|
break;
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
no crash
|