mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
9 lines
110 B
D
9 lines
110 B
D
|
|
__gshared int x = 7;
|
|
__gshared int*[70000] px = &x;
|
|
|
|
void main()
|
|
{
|
|
foreach(p; px)
|
|
assert(p && *p == 7);
|
|
}
|