1--TEST--
2errmsg: cannot create references to temp array
3--FILE--
4<?php
5
6foreach (array(1,2,3) as $k=>&$v) {
7}
8
9echo "Done\n";
10?>
11--EXPECTF--
12Fatal error: Cannot create references to elements of a temporary array expression in %s on line %d
13