[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:
Tomas Lindquist Olsen
2007-10-29 03:28:12 +01:00
parent 848ecbed0d
commit 4230f2ef11
12 changed files with 367 additions and 204 deletions

13
test/bug39.d Normal file
View File

@@ -0,0 +1,13 @@
module bug39;
struct S
{
long l;
}
void main()
{
S s;
s.l = 23;
void* p = &s;
}