Files
ldc/test/bug39.d
Tomas Lindquist Olsen 4230f2ef11 [svn r76] Fixed: TypeInfo for structs.
Fixed: PostExp was unable to allocate storage for parameters.
Fixed: Many types of functions and delegates were broken.
Misc cleanups.
2007-10-29 03:28:12 +01:00

14 lines
98 B
D

module bug39;
struct S
{
long l;
}
void main()
{
S s;
s.l = 23;
void* p = &s;
}