mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
8 lines
122 B
C
8 lines
122 B
C
// https://issues.dlang.org/show_bug.cgi?id=22970
|
|
|
|
int xs[5];
|
|
void fn()
|
|
{
|
|
for (int *p = &xs[0]; p < &xs[5]; p++)
|
|
;
|
|
}
|