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

14 lines
149 B
D

struct S
{
int opApply(int delegate(string) dg)
{
return 0;
}
}
void main()
{
foreach (_; S())
{
return;
}
}