blob: f999c1c03bf4817e056d04237c49a7bae27c48a8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
--TEST--
Yield cannot be used outside of functions
--FILE--
<?php
yield "Test";
?>
--EXPECTF--
Fatal error: The "yield" expression can only be used inside a function in %s on line %d
|