For level greater than 0, "undefined variable" error is raised during destructuring in foreach.
Sample code:
<?php
foreach($rows as ['id' => $id])
yield new Foo($id);
Output:
------ ----------------------------------------------
69 Undefined variable: $id
70 Undefined variable: $id
------ ----------------------------------------------