[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

12
test/bug38.d Normal file
View File

@@ -0,0 +1,12 @@
module bug38;
void func(int* p)
{
p++;
}
void main()
{
int i;
func(&i);
}