Ingo Weinhold b4ad2f5e97 Copying gcc 4 into the main trunk.
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@14971 a95241bf-73f2-0310-859d-f6bbb57e9c96
2005-11-16 19:04:34 +00:00

10 lines
138 B
C

/* Test an odd construct for compilability. */
static void *fwd;
void *bwd = &fwd;
static void *fwd = &bwd;
int main ()
{
return 0;
}