mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
14 lines
208 B
D
14 lines
208 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail13756.d(11): Error: `foreach`: index must be type `const(int)`, not `int`
|
|
---
|
|
*/
|
|
|
|
void maiin()
|
|
{
|
|
int[int] aa = [1:2];
|
|
foreach (ref int k, v; aa)
|
|
{
|
|
}
|
|
}
|