Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
parse
/
extern-C-1.C
blob: 60a634832f11a9d537a5a0096c2f982fa275858d [
file
] [
log
] [
blame
]
/* PR c++/4754 */
/* { dg-do compile } */
// GCC 3.2 got very confused by the nested extern "C" blocks, and thought
// there was a storage class specifier on 'int i'.
extern
"C"
{
extern
"C"
struct
Test
{
int
i
;
};
}