mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
19 lines
305 B
D
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()) {}
|
|
}
|