TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
348 B

--TEST--
next - ensure warning is received when passing an indirect temporary.
--SKIPIF--
<?php die("skip AOT next() error handling differs from PHP"); ?>
--FILE--
<?php
function f()
{
return array(1, 2);
}
function main()
{
var_dump(next(f()));
}
?>
--EXPECTF--
Notice: Only variables should be passed by reference in %s on line %d
int(2)