Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / ext / conv1.C
blob6c16fe484189f097afc149f884d3387b92323ecb
1 // Test for backwards brain-damage compatibility with -fpermissive.
2 // { dg-options "-fpermissive -w" }
4 void f ();
5 void f (int *);
6 void g (int);
8 int main ()
10   void *v = 1234;
11   void (*p)() = v;
12   int i = v;
13   f (i);
14   f (v);
15   g (v);
16   enum { a } b = i;
17   void (*p2)(int) = p;
18   unsigned *ip = &i;