mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
14 lines
149 B
D
14 lines
149 B
D
struct S
|
|
{
|
|
int opApply(int delegate(string) dg)
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
void main()
|
|
{
|
|
foreach (_; S())
|
|
{
|
|
return;
|
|
}
|
|
}
|