mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
9 lines
112 B
D
9 lines
112 B
D
void main()
|
|
{
|
|
static int[] b = [1, 2];
|
|
b[0] = 2;
|
|
|
|
typedef int[] ia = [1,2];
|
|
static ia a;
|
|
a[0] = 5;
|
|
} |