xref: /PHP-5.3/Zend/tests/errmsg_043.phpt (revision 0f0fe9c9)
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