mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
18 lines
287 B
D
18 lines
287 B
D
extern(C) int printf(char*, ...);
|
|
|
|
void main()
|
|
{
|
|
int[3] a = [1, 2, 3];
|
|
int[3] b = [4, 5, 6];
|
|
int[3] c;
|
|
|
|
c[] = a[] + b[];
|
|
|
|
printf("c.ptr = %p\n", c.ptr);
|
|
printf("c.length = %lu\n", c.length);
|
|
|
|
assert(c[0] == 5);
|
|
assert(c[1] == 7);
|
|
assert(c[2] == 9);
|
|
}
|