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

19 lines
305 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail352.d(18): Error: cannot infer argument types, expected 1 argument, not 2
---
*/
struct Range
{
bool empty;
int front() { return 0; }
void popFront() { empty = true; }
}
void main()
{
// no index for range foreach
foreach(i, v; Range()) {}
}