mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
14 lines
318 B
D
14 lines
318 B
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) { }
|
|
}
|