mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-02-28 01:23:14 +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:
12
test/bug38.d
Normal file
12
test/bug38.d
Normal file
@@ -0,0 +1,12 @@
|
||||
module bug38;
|
||||
|
||||
void func(int* p)
|
||||
{
|
||||
p++;
|
||||
}
|
||||
|
||||
void main()
|
||||
{
|
||||
int i;
|
||||
func(&i);
|
||||
}
|
||||
Reference in New Issue
Block a user