mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
22 lines
218 B
D
22 lines
218 B
D
module a;
|
|
|
|
int i = 42;
|
|
|
|
void main()
|
|
{
|
|
int j;
|
|
j = i;
|
|
int* p;
|
|
p = &j;
|
|
int k = *p;
|
|
assert(k == 42);
|
|
|
|
byte b = -1;
|
|
int i = b;
|
|
assert(i == -1);
|
|
|
|
int* p2 = p;
|
|
|
|
printf("Done\n");
|
|
}
|