Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / extern-c-redecl2.C
blob055148f38417b5ab03c14055b689bc455e687adc
1 // Contributed by Dodji Seketeli <dodji@redhat.com>
2 // Origin PR c++/41020
3 // { dg-do compile }
5 extern "C"
7   int fork (void);
10 class frok
12   int this_errno;
13   friend int fork (void);
16 extern "C" int
17 fork (void)
19   frok grouped;
20   return grouped.this_errno;