mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-03-22 12:01:49 +01:00
[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.
This commit is contained in:
13
test/bug39.d
Normal file
13
test/bug39.d
Normal file
@@ -0,0 +1,13 @@
|
||||
module bug39;
|
||||
|
||||
struct S
|
||||
{
|
||||
long l;
|
||||
}
|
||||
|
||||
void main()
|
||||
{
|
||||
S s;
|
||||
s.l = 23;
|
||||
void* p = &s;
|
||||
}
|
||||
Reference in New Issue
Block a user