1--TEST--
2Bug GH-9801 (Crash when memory limit is exceeded during generator initialization)
3--INI--
4memory_limit=16m
5--FILE--
6<?php
7
8function a() {
9 yield from a();
10}
11
12foreach(a() as $v);
13--EXPECTF--
14Fatal error: Allowed memory size of %d bytes exhausted %s
15