Files
ldc/test/bug38.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

13 lines
88 B
D

module bug38;
void func(int* p)
{
p++;
}
void main()
{
int i;
func(&i);
}