mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
10 lines
102 B
D
10 lines
102 B
D
module aa5;
|
|
|
|
void main()
|
|
{
|
|
int[int] aa;
|
|
aa[42] = 1;
|
|
int i = aa[42];
|
|
assert(i == 1);
|
|
}
|