blob: cdf0e854d54f4928336c924c4980fe65bcac865a [file] [log] [blame]
/*
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)
{
}
}