mirror of
https://github.com/php/php-src.git
synced 2024-11-28 20:34:29 +08:00
13 lines
241 B
PHP
13 lines
241 B
PHP
--TEST--
|
|
errmsg: cannot create references to temp array
|
|
--FILE--
|
|
<?php
|
|
|
|
foreach (array(1,2,3) as $k=>&$v) {
|
|
}
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot create references to elements of a temporary array expression in %s on line %d
|