mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
Fixed: PostExp was unable to allocate storage for parameters. Fixed: Many types of functions and delegates were broken. Misc cleanups.
13 lines
88 B
D
13 lines
88 B
D
module bug38;
|
|
|
|
void func(int* p)
|
|
{
|
|
p++;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
int i;
|
|
func(&i);
|
|
}
|