blob: 3de8bc2062e9c0e057b2ab48429e14fb0352515d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--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
|