6de9cd9a88
From-SVN: r81764
10 lines
138 B
C
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;
|
|
}
|