view test/bug38.d @ 300:7b1040c76dd2 trunk

[svn r321] Fix bug in argument remapping functions.
author ChristianK
date Tue, 24 Jun 2008 22:27:55 +0200
parents d7e764e62462
children
line wrap: on
line source

module bug38;

void func(int* p)
{
    p++;
}

void main()
{
    int i;
    func(&i);
}