(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
test15368.d
/*
TEST_OUTPUT:
---
fail_compilation/test15368.d(13): Error: cannot declare `auto` loop variable, omit `auto` to still get type inference
---
*/

// Issue 15368 - Improve error message for "auto" keyword inside "foreach"
// https://issues.dlang.org/show_bug.cgi?id=15368

void main()
{
    foreach (auto e; foo) { }
}