view tests/mini/bug38.d @ 900:177afbf5297b

Solaris compatibility and proc map parsing #183, thanks BlueZeniX!
author Christian Kamm <kamm incasoftware de>
date Thu, 22 Jan 2009 18:53:32 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module bug38;

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

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