summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/array_next_error1.phpt
blob: a591347e30b78d09bfd32424d974052852cbecf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
next - ensure warning is received when passing an indirect temporary.
--FILE--
<?php
function f() {
    return array(1, 2);
}
var_dump(next(f()));
?>
--EXPECTF--

Notice: Only variables should be passed by reference in %s on line %d
int(2)