mirror of
https://github.com/php/php-src.git
synced 2024-12-18 06:21:41 +08:00
28 lines
404 B
PHP
28 lines
404 B
PHP
--TEST--
|
|
Some string offset errors
|
|
--FILE--
|
|
<?php
|
|
|
|
function &test() : string {
|
|
$str = "foo";
|
|
return $str[0];
|
|
}
|
|
|
|
try {
|
|
test();
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
try {
|
|
$str = "foo";
|
|
$str[0] =& $str[1];
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
Cannot return string offsets by reference
|
|
Cannot create references to/from string offsets
|