xref: /PHP-8.0/Zend/tests/generators/gh9801.phpt (revision 26c7c82d)
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