mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
Fixed: PostExp was unable to allocate storage for parameters. Fixed: Many types of functions and delegates were broken. Misc cleanups.
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;
|
|
}
|