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

9 lines
110 B
D

__gshared int x = 7;
__gshared int*[70000] px = &x;
void main()
{
foreach(p; px)
assert(p && *p == 7);
}