mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
8 lines
77 B
D
8 lines
77 B
D
int[10] test;
|
|
int* t = &test[3];
|
|
|
|
void main()
|
|
{
|
|
assert(t is &test[3]);
|
|
}
|