mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
23 lines
190 B
D
23 lines
190 B
D
module pointers;
|
|
|
|
struct S
|
|
{
|
|
long l;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
int j = 42;
|
|
int* p = &j;
|
|
|
|
auto t = *p;
|
|
*p ^= t;
|
|
|
|
*p = ~t;
|
|
|
|
S s;
|
|
S* sp = &s;
|
|
*sp = s;
|
|
s = *sp;
|
|
}
|