blob: 8412a32af5f5fc068af21105d3c898285c94417c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
Yield from by reference is not supported
--FILE--
<?php
function &gen() {
yield from [];
}
?>
--EXPECTF--
Fatal error: Cannot use "yield from" inside a by-reference generator in %s on line %d
|