mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-03-29 16:19:02 +02:00
14 lines
98 B
D
14 lines
98 B
D
module bug39;
|
|
|
|
struct S
|
|
{
|
|
long l;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
S s;
|
|
s.l = 23;
|
|
void* p = &s;
|
|
}
|