[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/bug40.d Normal file
View File

@@ -0,0 +1,12 @@
module bug40;
char[] func(void* p)
{
return null;
}
void main()
{
char[] function(void*) fp = &func;
assert(fp(null) is null);
}