dmd/compiler/test/fail_compilation/ice13644.d
2022-07-09 18:53:07 +02:00

25 lines
336 B
D

/*
TEST_OUTPUT:
---
fail_compilation/ice13644.d(22): Error: foreach: key cannot be of non-integral type `string`
---
*/
struct Tuple(T...)
{
T field;
alias field this;
}
Tuple!(string, string)[] foo()
{
Tuple!(string, string)[] res;
return res;
}
void main()
{
foreach (string k2, string v2; foo())
{
}
}