blob: 82b291fe6ce7f41fabfca403a063361d3223136b [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail249.d(16): Error: invalid `foreach` aggregate `bar()`
---
*/
module main;
public void bar()
{
}
void main()
{
foreach (Object o; bar())
{
debug Object foo = null; //error
}
}