1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/ext/standard/tests/array/array_next_error1.phpt

13 lines
258 B
PHP

--TEST--
next - ensure warning is received when passing an indirect temporary.
--FILE--
<?php
function f() {
return array(1, 2);
}
var_dump(next(f()));
?>
--EXPECTF--
Strict Standards: Only variables should be passed by reference in %s on line %d
int(2)