OSDN Git Service

PR c++/26291
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / extern-C-1.C
1 /* PR c++/4754 */
2 /* { dg-do compile } */
3 // GCC 3.2 got very confused by the nested extern "C" blocks, and thought 
4 // there was a storage class specifier on 'int i'.
5
6 extern "C"
7 {
8     extern "C" struct Test
9     {
10         int i;
11     };
12 }
13